Configure Ahead of Time (AoT) for your Angular app using the Angular CLI
Learn how to leverage the true power of AoT compilation with the CLI
1 min read
1 min read
TL;DW (Too long, didn’t watch): You can simply append the
--aot
to your build instruction, likeng build --prod --aot
. Ya, it’s really that damn simple 😃UPDATE (March 1st, 2017) - The Angular CLI now automatically builds with AoT enabled if you use the
--prod
flag. So there’s no need to add it explicitly. The--aot
flag still remains though if you wanted to use AoT in dev mode for instance.
This video you will learn about…
You can download the source code I use in the video from my repository.
{% include article-link.html url=“https://angular.io/docs/ts/latest/cookbook/aot-compiler.html" title=“Angular Docs Cookbook: Ahead of Time Compilation” text=“Learn how to use Ahead-of-time compilation” imageurl=“/blog/assets/imgs/linkpics/angular2logo.svg” >}}