0 votes
in Angular by
What is AOT (Ahead-Of-Time) Compilation?

1 Answer

0 votes
by

Each Angular app gets compiled internally. The Angular compiler takes in the JS code, compiles it and then produces some JS code. This happens only once per occasion per user. It is known as AOT (Ahead-Of-Time) compilation.

...