Skip to content

Lab 4: Build Process

Christian Liebel edited this page Mar 18, 2018 · 1 revision

Create builds of your app by using the ng build command of Angular CLI. Experiment with the following flags:

  • ng build
  • ng build --aot
  • ng build --prod --build-optimizer=false
  • ng build --prod

The output is placed in the dist folder of your application (and it will replace any previous builds there).

  • How large in file size are the different builds?

Clone this wiki locally