devServer: {
open: process.platform === 'darwin',
host: '0.0.0.0',
port: 8080,
https: false,
hotOnly: false,
proxy: {
'/api': {
target: 'http://后台给的地址/apis',
ws: true,
changOrigin: true
},
before: app => {},
}
},
这是我在vue.config.js文件下配置的反向代理,后台给的地址也写上了,为什么不起作用
网友评论