How to change the server port from 3000?

后端 未结 7 1479
执笔经年
执笔经年 2021-02-07 03:57

I just ended the tutorial of Angular 2 and I can\'t find a way to change the localhost port from 3000 to 8000. In my package.json file there\'s the line \"sta

7条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-07 04:09

    You can change it inside bs-config.json file as mentioned in the docs https://github.com/johnpapa/lite-server#custom-configuration

    For example,

    {
      "port": 8000,
      "files": ["./src/**/*.{html,htm,css,js}"],
      "server": { "baseDir": "./src" }
    }
    

提交回复
热议问题