gpt4 book ai didi

javascript - Angular 7 使用 ng build --prod 缩小 Assets

转载 作者:太空狗 更新时间:2023-10-29 18:35:10 24 4
gpt4 key购买 nike

/assets 中的 JavaScript 和 CSS 文件在 ng build --prod 后未缩小。有人知道如何缩小这些文件吗?我在 Angular 文档中没有看到任何内容。

最佳答案

你在生产中构建的所有东西都已经缩小了,如果它没有缩小我认为你还没有在 angular.json 中打开配置。您可以在 angular.json 中使用这些配置

"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": true,
"serviceWorker": true,
"deleteOutputPath": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}

然后再次运行ng build --prod

关于javascript - Angular 7 使用 ng build --prod 缩小 Assets ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57886872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com