I got something like this:
ng build --prod --no-aot
But I am not able to understand what is the difference between
ng build --prod
and
ng build --prod --no-aot
I got something like this:
ng build --prod --no-aot
But I am not able to understand what is the difference between
ng build --prod
and
ng build --prod --no-aot
Just run command
ng build -prod -aot=false
. This will disable the aot compiler.Update: For Angular 6
Use the following command to disable AOT mode:
The flag
--prod
does the AOT compilation by default. If you want to build without AOT then simply runng build
only without any flag.