📜  angular build aot vs jit - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:29.230000             🧑  作者: Mango

代码示例1
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