Angular 12 中的 AOT 编译

AOT compilation in Angular 12

Angular 文档状态:

 *Ahead-of-Time (AOT), which compiles your application and libraries at build time. This is the 
 default since Angular 9.*

所以如果我想为 production 我的 Angular 12 应用程序编译 AOT 我只需要输入 ng build没有添加 --prod 并且没有在 angular.jsonpackage.json[ 中添加特定配置=27=]?

这是 ng build 命令在我的 package.json:

...
"scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "watch": "ng build --watch --configuration development",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e",
    "prepare": "husky install"
  },
...

谢谢你的帮助

您不需要为生产构建明确包含 --prod 命令 - 假设您使用的是最新版本的 Angular,即我收集的 v12。

默认 angular.json 文件包含有关生产版本的配置文件部分,您可以保持原样。