在Angular 9中,$localize
无法与--configuration=de
一起使用的问题可以通过修改Angular配置文件来解决。以下是解决方法的示例代码:
angular.json
文件,并找到你的构建配置,比如"configurations"
部分。"configurations"
中找到"de"
配置,并添加一个"localize"
属性,将其设置为false
,如下所示:{
...
"configurations": {
"de": {
"localize": false,
...
},
...
}
}
--configuration=de
选项,如下所示:ng build --configuration=de
这样,Angular 9 中的 $localize
将会正常工作,而不会出现与 --configuration=de
一起使用的问题。