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
JulesG10