February 2016
Beginner to intermediate
308 pages
5h 46m
English
After creating your application you'll need to be able to deploy it. Let's take a look at a few ways to deploy your application.
build command:
$ ember build
/dist folder. To build your project for production, you'll need to use the -prod argument:
$ ember build -prod
$ ember build –prod –o<directory>
Building your application for production will automatically minify your files as well as fingerprint them. This does not occur when your environment is set up for development, which is set by default.
The
Read now
Unlock full access