关于跨域的配置真是累呀 在网上找了资料 才成功实现跨域了
其实主要在vue.config.js 来配置跨域
module.exports = {
*******
lintOnSave: false,
baseUrl: process.env.NODE_ENV === 'production' ? '/online/' : '/',
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8080', // 配置目标的地址
ws: true, // proxy websockets
changeOrigin: true, // needed for virtual hosted sites
pathRewrite: {
'^/api': '' // rewrite path
}
}
} // 配置多个代理
},
*******
}
网友评论