How to change angular port from 4200 to any other

后端 未结 29 1868
心在旅途
心在旅途 2020-12-04 05:59

I want to use 5000 instead of 4200.

I have tried to create a file on root name ember-cli and put JSON according to the code below:

{
   &q         


        
29条回答
  •  执念已碎
    2020-12-04 06:08

    You can change your application port by entering the following command,

    ng serve --port 4200

    Also, for a permanent setup you can change the port by editing angular-cli.json file

     "defaults": {
        "serve": {
          "port": 8080
        }
      }
    

提交回复
热议问题