我的反应应用程序的默认端口号不会改变
您好,我是 React 新手,想更改我的 React 端口号 3000 因为我有一个在 3000 上运行的 Express 服务器。
很明显,我查看了 stackoverflow 答案,并尝试了推荐的所有内容。
我在根文件夹(公共)中创建了一个 .env 并将端口设置为 = 4000
在 .env.development 中尝试了相同的操作
我添加了:
“脚本”:{ "start": "设置 PORT=3500 && 反应脚本启动", “构建”:“反应脚本构建” }
中。
但只有在重新启动后才会出现以下结果
Local: http://localhost:3000 在您的网络上: http://192.168.2.19:3000
我的应用程序中可能缺少什么为其他人工作但不为我工作? 请告诉我
Hi I am new to react and would like to change my react port number of 3000
as i have an express server running on the 3000.
So obviously i look through stackoverflow answers and i tried everything recommended.
i created a .env in root folder (public) and set the port to = 4000
tried the same in .env.development
i added:
"scripts": {
"start": "set PORT=3500 && react-scripts start",
"build": "react-scripts build"
}
in my json file.
but only to end up with below upon restart
Local: http://localhost:3000
On Your Network: http://192.168.2.19:3000
What could i possbily be missing in my app that its working for other ppl but not for me??
please let me know
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Mac/Linux,启动命令略有不同:
If you're on Mac/Linux the start command is slightly different: