前端解决跨域使用proxy在vue.config.js
Posted 嘿!那个姑娘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端解决跨域使用proxy在vue.config.js相关的知识,希望对你有一定的参考价值。
在vue中的vue.config.js配置文件中
module.exports = {
devServer: {
open: true,
proxy: {
\'/api\': {
target: "http://192.168.8.164", //不能为空
ws: true,
changOrigin: true,
pathRewrite: {
\'^/api\': \'\'
}
}
}
}
}
以上是关于前端解决跨域使用proxy在vue.config.js的主要内容,如果未能解决你的问题,请参考以下文章