反应端口 8081
React Port 8081
我现在正在使用 React,但我的端口有问题,
确实,当我尝试切换到 8081 端口时,它没有执行并直接将端口 8080 发送给我,有人可以帮助我吗?
我尝试将我所有的变量都放在 8081 上,但它不起作用并在 8080 上启动我的项目。
在您的 package.json 文件中。
您的默认 scripts 键必须具有以下值 .
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
只需像这样替换“开始”键的 值 :
即添加 PORT=8080
"scripts": {
"start": "PORT=8080 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
我现在正在使用 React,但我的端口有问题, 确实,当我尝试切换到 8081 端口时,它没有执行并直接将端口 8080 发送给我,有人可以帮助我吗?
我尝试将我所有的变量都放在 8081 上,但它不起作用并在 8080 上启动我的项目。
在您的 package.json 文件中。 您的默认 scripts 键必须具有以下值 .
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
只需像这样替换“开始”键的 值 : 即添加 PORT=8080
"scripts": {
"start": "PORT=8080 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}