How to modify local url by default

时间:2019-02-15 15:02:09

标签: reactjs url

I'm newbie in react and I would like to know if it's possible to modify the url by default http://localhost:3000http://whatever.local:port_number,其中port_number可以是任何端口。

安装后,我已经修改了package.json并在依赖项之前添加了这一行:

"proxy": "http://localhost.example:3000/"

但是当我使用 npm start 启动项目时,打开的URL是http://localhost:3000而不是http://localhost.example:3000

我的项目以http://localhost.example:3000而不是http://localhost:3000开头怎么办?

编辑我:

我用HOST = http://local.example:3000创建了一个.env文件,但出现此错误:

enter image description here

编辑II:

这对我不起作用:(

.env文件

enter image description here

托管文件

enter image description here

ping新主机

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用密钥HOST=localhost.example创建一个.env文件,它应该可以解决您的问题。