我使用Daniel Zen的材料todo应用程序,并希望更改为angular-cli.json中的端口。 https://github.com/danielzen/material-todo
但这不起作用。 我试过这个:
{
"port" : 3000,
但没有任何反应。 有人有想法吗?
答案 0 :(得分:34)
使用Angular-CLI 1.0.0进行编辑
现在可以通过定义如下属性直接在.angular-cli.json
文件中定义已使用的端口:
{
"defaults": {
"serve": {
"port": 2500
}
}
}
以下是指向配置的所有可用选项的直接链接:Angular-CLI options configuration
旧答案
您可以直接在packages.json
中配置它,通过以下方式更改start
脚本:
"start": "ng serve --port 2500",
然后使用npm start
答案 1 :(得分:8)
与新版本一样,.angular-cli.json不可见。您可以像这样在type1
的{{1}}部分设置port
:
serve
您可以添加任何端口号,而不是angular.json
这就是如何设置"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "formation:build",
"port": 5001
},
....
的方法,就像端口:
5001
答案 2 :(得分:1)
enter image description here这通过命令行对我有用
ng提供--open --port 3000
我已经检查过.angular-cli.json,但是在那找不到。The typed command is highlighted in the image where the terminal is opened and in the second image the appication is ruuning on the port number 3000 which highlighted too