What is AOT in Angular 8?
In Angular 8, AOT stands for Ahead-of-Time compiler. It pre-compiles the application components and their templates during the build process. There are several reasons why apps compiled with AOT launch faster: The application components that are compiled with AOT execute immediately, without client-side compilation.Here, templates are embedded as code within their components, so there is … Read more