vue+iframe引入本地其他项目 404
进入vue.config.js 把代理配上,再检查检查,域名,端口号是否正确。
proxy
:{
"/path":{
target
:"http://***:8080"
ws
:true,
changeOrigin
:true,
pathRewite
:{
'^path':''
}
}
}
e,g
module
.exports
= {
devServer
: {
proxy
: {
'/api': {
target
: '<url>',
ws
: true,
changeOrigin
: true
},
'/foo': {
target
: '<other_url>'
}
}
}
}
转载请注明原文地址: https://lol.8miu.com/read-27696.html