我正在尝试使用npm run watch
观看开发。但它已移至http://localhost:3000而不是http://localhost:8080。如何将此端口3000更改为8080?
因为我在8080端口使用Tomcat服务器。
[BS] Proxying: http://localhost:8080
[BS] Access URLs:
-----------------------------------------------------------------------
Local: http://localhost:3000/server1/demo3/index.html
External: http://192.168.126.1:3000/server1/demo3/index.html
-----------------------------------------------------------------------
UI: http://localhost:3001
UI External: http://192.168.126.1:3001
-----------------------------------------------------------------------
答案 0 :(得分:0)
更新bs-config.json文件:
例如:
{
"port": 8000,
"files": ["./src/**/*.{html,htm,css,js}"],
"server": { "baseDir": "./src" }
}
但是在angular2-cli的情况下,你需要提供这样的端口参数:
ng serve --port 8000