Using the CLI to Package an Application for Production
Understand how to package your Angular application for production using the CLI. Explore the ng build command to generate a release version, learn about the distribution folder contents, and discover the benefits of Ahead-of-Time compilation for smaller, faster applications.
We'll cover the following...
We'll cover the following...
ng build command
The final Angular CLI command we are going to look at is the ng build command, which generates a release version of the application. This release version can then be hosted on your live server for clients to access.
To run this command, all you need to do is again navigate to your angular ...