【Vue】跨域配置|vue.config.js
如果package.json同目录下没有vue.config.js文件,请自行创建module.exports = {devServer: {open: true,host: 'localhost',port: 8000,https: false,//以上的ip和端口是我们本机的;下面为需要跨域的proxy: { //配置跨域'/api': {.
·
如果package.json同目录下没有vue.config.js文件,请自行创建
module.exports = {
devServer: {
open: true,
host: 'localhost',
port: 8000,
https: false,
//以上的ip和端口是我们本机的;下面为需要跨域的
proxy: { //配置跨域
'/api': {
target: 'http://127.0.0.1:8000/api/', //这里后台的地址模拟的;应该填写你们真实的后台接口
ws: true,
changOrigin: true, //允许跨域
pathRewrite: {
'^/api': '' //请求的时候使用这个api就可以
}
}
}
}
}
重新run一边项目应该就能解决
更多推荐
已为社区贡献1条内容
所有评论(0)