Search code examples
meteor

How can I only build the server side by Meteor build?


After adding mobile platforms, meteor build will automatically build all the mobile platform and the backend server.

Is it possible to only build the backend server?


Solution

  • Unfortunately the build feature doesn't do this.

    There is a deprecated meteor bundle feature that still works though:

    meteor bundle app.tar.gz
    

    Builds a app.tar.gz bundle containing the server bundle.