更改systemjs中的默认端口号
Change the default port number in systemjs
我正在使用 Angular.io 默认的快速入门模板来构建项目。
当我发出命令 npm start
时,它总是在
中显示我的项目组件的内容
localhost:3000
他们是否要将内容更改为可见:
localhost:8000
提前致谢。
应该能够更新 bs.config.json
以获得端口配置
{
"port": 8000,
"server": {
...
}
}
我正在使用 Angular.io 默认的快速入门模板来构建项目。
当我发出命令 npm start
时,它总是在
localhost:3000
他们是否要将内容更改为可见:
localhost:8000
提前致谢。
应该能够更新 bs.config.json
以获得端口配置
{
"port": 8000,
"server": {
...
}
}