- 在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
- 在.env文件配置端口
HOST=test.phfund.com.cn
ESLINT=1
PORT=8080
- 在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"
}
...
}
本人主要是项目中用到单点登录,开发中需要访问本地运行的项目,需要这样配置。
网友评论