gpt4 book ai didi

angular - 在 Angular 12 的开发模式下构建

转载 作者:行者123 更新时间:2023-12-03 18:47:45 32 4
gpt4 key购买 nike

Angular 12 带有默认的 prod 模式,我们如何保持旧的 dev 模式?我们缺少 sourcemap 并且默认情况下 main.js 也被缩小,这很酷但在开发人员模式下没有帮助。
所以问题是如何回到旧的开发模式或生成源映射而不是缩小。尝试更新 angular.json 中的配置但没有奏效。

"optimization": {
"scripts": false,
"styles": {
"minify": false,
"inlineCritical": false
},
"fonts": false
},
"outputHashing": "none",
"sourceMap": true,
"extractCss": true,

最佳答案

我刚刚在构建/配置下添加了一个开发部分

"development": {
"optimization": false,
"sourceMap": true,
"namedChunks": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": false,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "6mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
在服务/配置下:
 "development": {
"browserTarget": "studio:build:development"
}
我使用 ng serve myapp --configuration development 运行该应用程序

关于angular - 在 Angular 12 的开发模式下构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67594497/

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