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:
ember-cli
{ &q
You can edit default port number that is configured in serve.js file.
Path will be project_direcory/node_modules/angular-cli/commands/serve.js.
project_direcory/node_modules/angular-cli/commands/serve.js
Search for this line -> var defaultPort = process.env.PORT || 4200; Replace with this line -> var defaultPort = process.env.PORT || 5000;
var defaultPort = process.env.PORT || 4200;
var defaultPort = process.env.PORT || 5000;