Answers for "angular build aot vs jit"

2

angular build aot vs jit

Just-in-Time (JIT), compiles your app in the browser at runtime.
Ahead-of-Time (AOT), compiles your app at build time on the server.

ng build --prod  --> JIT
ng build --aot 	 --> AOT
Posted by: Guest on March-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language