gpt4 book ai didi

asp.net - AspNetCore Angular 6.0 SPA 模板中的未知选项 --extractCss

转载 作者:太空狗 更新时间:2023-10-29 17:02:13 34 4
gpt4 key购买 nike

我从 cli 搭建了 AspNetCore Angular 6.0 SPA 模板,然后相应地安装了 npm 包。

但是,当我尝试运行项目 dotnet run 时,它不会启动,而是提示错误。我已截取屏幕截图供您引用。我不确定它是否与 angular.Json file 或其他有关!!!任何想法..

错误:

Unknown option --extractCss

Error Captured

最佳答案

这是因为ng serve命令不再支持--extractCss选项

打开package.json。你会发现

{
"scripts": {
"start": "ng serve --extract-css" // Please remove the --extract-css
// ...
}
}

start 脚本中删除 --extract-css

就是现在

{
"scripts": {
"start": "ng serve"
// ...
}
}

现在打开 angular.json。在 build 配置中设置 "extractCss": true

例子:

"build": {
"architect": {
"configurations": {
"extractCss": true,
//...
}
}
}
}

引用: https://github.com/angular/angular-cli/issues/10666#issuecomment-386843570

引用文献 2: http://www.talkingdotnet.com/upgrade-angular-5-app-angular-6-visual-studio-2017/

关于asp.net - AspNetCore Angular 6.0 SPA 模板中的未知选项 --extractCss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50415679/

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