While reading the Angular AOT section in the docs it states that AOT compilation results in
"Fewer asynchronous requests"
. The reasoning behind this is because:
"The compiler inlines external HTML templates and CSS style sheets within the application JavaScript, eliminating separate ajax requests for those source files."
But I cannot see how this is true as when you run a build with angular using AOT and another build not using AOT you end up with the exact same files.
index.html
main.js
polyfills.js
runtime.js
styles.js
vendor.js
So how is this going to result in "Fewer asynchronous requests" if both builds produce the same number of files?