How to make a production ready build using Ember CLI?

22,907

All you need to do to create your dist folder is to run:

ember build --environment=production

or as @Simon has mentioned

ember build -prod

But to add some meat to the bones:

If you need to change settings, you can do this by finding your environment.js file which should be in the config folder.

The Ember documents suggest changing the locationType: 'hash' to ensure the history works ok with the router.

You have a section which will look like this, where you can add ENV.theVariableToSet = 'myValue'; for anything you want to change

if (environment === 'production') {
  ENV.locationType = 'hash'
}
Share:
22,907
Drew Baker
Author by

Drew Baker

Technical Director and co-founder at Funkhaus, the premier website design firm in the commercial production and creative media space.

Updated on January 21, 2020

Comments

  • Drew Baker
    Drew Baker over 4 years

    I've been building a web app in Ember, and am ready to put it on a server for public use. I just want to make the /dist/ folder, which i will then manually upload to a server via FTP.

    How do I build a dist for this in Ember? I can't figure out how to turn on minification and remove the tests files from the build.

    I'm guessing it has something to do with my Brocfile.js, bower.json, package.json, environment.js or tester.json files, but I don't really know which one, or what that config would look like.

    Bonus: I'd like to know how to turn disable/enable minification too, as I want to share my production build with a colleague to see.

    It should be more that just "ember build --environment production". What files do I need to change to enable/disable minfication, to include tests etc? Or is that what "ember build --environment production" does?

    Thanks!