0 votes
in Angular by
What is the reason for using the AOT compiler in Angular?

1 Answer

0 votes
by

An Angular application is made of several components and their HTML templates. Because of these Angular components and templates, the browsers are not able to understand them directly. So, Angular applications require a compilation process before they run in a browser. That's why AOT compilers are required.

...