vue3.0配置代理 两种方式
2020-03-08 本文已影响0人
魔仙堡杠把子灬
很多人如果换一个时间认识,就会有不同的结局。
在此附上我的QQ: 2489757828 有问题的话可以一同探讨
我的github: 李大玄
我的私人博客: 李大玄
我的简书: 李大玄
我的CSDN: 李大玄
第一种:
proxy: {
'/apis': {
target: 'https://xxxxxxx.com/', // target host
ws: true, // proxy websockets
changeOrigin: true, // needed for virtual hosted sites
pathRewrite: {
'^/apis': '' // rewrite path
}
},
}
将项目里面的这个地方改为空就OK
第二种
通过
.env
文件注意: 可以看这篇文章这里
VUE_APP_
是规定的命名格式在这里插入图片描述
然后通过获取环境变量配置就OK!!
在这里插入图片描述
俺已经试过了, 是OK的!!!