作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 Angular 6 的自述文件:
## Development server
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
在 6 之前,对于我的本地环境,我将运行以下命令:
ng serve --env=local
现在不行了……
在 angular.json 中我添加了以下内容:
"configurations": {
"local": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.local.ts"
}
]
},
那么如何服务我的本地环境呢?
我尝试了以下方法:
ng serve --configuration=local
Configuration 'local' could not be found in project
最佳答案
假设您在 angular.json 的 build
部分添加了 local
配置,您还需要在服务
部分。
类似这样的事情:
"serve": {
...
"configurations": {
"production": {
"browserTarget": "programName:build:production"
},
"local": {
"browserTarget": "programName:build:local"
}
}
然后您可以像这样提供应用程序:
ng s -c=local
关于angular - 如何在 Angular6 中提供自定义环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50201262/
我是一名优秀的程序员,十分优秀!