美文网首页
react前端配置本地域名

react前端配置本地域名

作者: KK_boy | 来源:发表于2020-04-17 16:37 被阅读0次
  1. hosts上配置域名
    hosts路径: C:\Windows\System32\drivers\etc\hosts
    加上配置:127.0.0.1 test.phfund.com.cn
# localhost name resolution is handled within DNS itself.
127.0.0.1       localhost
#   ::1             localhost

127.0.0.1       test.phfund.com.cn 
  1. .env文件配置端口
HOST=test.phfund.com.cn
ESLINT=1
PORT=8080 
  1. package.json中配置start
{
  "private": true,
  "scripts": {
    "start": "umi dev --host test.phfund.com.cn --prot 8080",//这个来的host 要跟本地host 文件一致
    "build": "umi build",
    "test": "umi test",
    "lint": "eslint --ext .js src mock tests",
    "precommit": "lint-staged"
  }
...
}

本人主要是项目中用到单点登录,开发中需要访问本地运行的项目,需要这样配置。

相关文章

网友评论

      本文标题:react前端配置本地域名

      本文链接:https://www.haomeiwen.com/subject/qcyyvhtx.html