如何更改React App的默认localhost端口

时间:2018-06-15 05:15:17

标签: reactjs localhost

我从链接create-react-app下载了React App软件包。 它指定的默认端口是端口:3000

如何将此端口更改为 3002或3006 等自定义端口?

1 个答案:

答案 0 :(得分:16)

从:

修改package.json的一部分
"start": "react-scripts start"

适用于Linux和MacOS:

"start": "PORT=3006 react-scripts start"

Windows to:

"start": "set PORT=3006 && react-scripts start"