Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了这样的东西:
ng build --prod --no-aot
但我无法理解两者之间有什么区别
ng build --prod
和
使用以下命令禁用 AOT 模式:
$ ng build --prod --aot=false --build-optimizer=false
只需运行命令ng build -prod -aot=false。这将禁用 aot 编译器。
ng build -prod -aot=false
该标志--prod默认进行 AOT 编译。如果您想在没有 AOT 的情况下构建,那么只需在ng build没有任何标志的情况下运行。
--prod
ng build