在Angular 9中,使用ng build --prod
命令将会创建多个ES5和ES2015的JavaScript文件。这是因为Angular应用程序在构建时会生成两个不同版本的JavaScript文件,以便在不同的环境中使用。
以下是一个解决方法,可以通过修改angular.json
文件来只生成一个ES5版本的JavaScript文件:
打开项目中的angular.json
文件。
找到architect -> build -> configurations -> production
部分。
在该部分中,找到fileReplacements
属性,并删除其中的内容。
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
...
}
}
fileReplacements
属性删除或注释掉,确保architect -> build -> configurations -> production
部分如下所示:"configurations": {
"production": {
...
}
}
保存并关闭angular.json
文件。
现在再次运行ng build --prod
命令,只会生成一个ES5版本的JavaScript文件。
请注意,这种方法会删除替换环境文件的功能,因此在构建生产版本时,将使用src/environments/environment.prod.ts
文件作为环境文件。如果您需要在构建过程中替换环境文件,可以根据您的需求进行修改。