gpt4 book ai didi

reactjs - 如何设置 React 自定义端口,例如 3129

转载 作者:行者123 更新时间:2023-12-03 13:57:10 24 4
gpt4 key购买 nike

我的项目基于create-react-app。默认情况下,npm start 或yarn start 将在端口 3000 上运行应用程序,并且 package.json 中没有指定端口的选项。

最佳答案

Just update a bit in webpack.config.js:

devServer: {
historyApiFallback: true,
contentBase: './',
port: 3000 // <--- Add this line and choose your own port number
}

然后再次运行npm start这会将该应用程序的默认端口设置为您指定的端口

Alternatively: modify part of package.json from:

"start": "react-scripts start"

对于 Linux 和 MacOS:

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

Windows 至:

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

关于reactjs - 如何设置 React 自定义端口,例如 3129,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51318124/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com