What is AOT?
Ahead-of-Time (AOT) is a type of compilation that compiles your app at build time. For AOT compilation, include the --aot
option with the ng build or ng serve command as below,
ng build --aotng serve --aot
Note: The ng build command with the --prod meta-flag (ng build --prod
) compiles with AOT by default.
February 28, 2022
398
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular