frontend/vue.config.js
2021-11-07 15:23:07 +08:00

17 lines
324 B
JavaScript

module.exports = {
devServer: {
proxy: {
'/admin': {
//代理api
target: 'http://127.0.0.1:5000', // 代理接口(注意只要域名就够了)
changeOrigin: true, //是否跨域
ws: true, // proxy websockets
pathRewrite: {
//重写路径
'^/admin': '' //代理路径
}
}
}
}
};