1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-29 12:18:23 +01:00

docs: add aot content angular (#6294)

This commit is contained in:
J. Degand 2024-07-31 05:08:02 -04:00 committed by GitHub
parent 58612589c9
commit a8f4d32a50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1 +1,9 @@
# AoT Compilation
# AoT Compilation
Angular applications require a compilation process before they can run in a browser. The Angular ahead-of-time (AOT) compiler converts your Angular HTML and TypeScript code into efficient JavaScript code during the build phase before the browser downloads and runs that code. Compiling your application during the build process provides a faster rendering in the browser.
Visit the following resources to learn to more:
- [@official@Ahead-of-time (AOT) compilation](https://angular.dev/tools/cli/aot-compiler)
- [@opensource@Angular Compiler Output](https://github.com/JeanMeche/angular-compiler-output)
- [@article@Understanding Angular's ahead of time compliation](https://blog.nashtechglobal.com/understanding-angulars-ahead-of-time-aot-compilation/)