zhishifufei_uniapp/vue.config.js

27 lines
766 B

module.exports = {
devServer: {
proxy: {
'/wap': {
target: "https://system.menghangjiaoyu.cn",
changeOrigin: true
},
'/admin': {
target: "https://system.menghangjiaoyu.cn",
changeOrigin: true
},
'/system': {
target: "https://system.menghangjiaoyu.cn",
changeOrigin: true
},
'/static/js': {
target: "https://system.menghangjiaoyu.cn",
changeOrigin: true
},
'/wss': {
target: "https://system.menghangjiaoyu.cn",
changeOrigin: true,
ws: true
}
}
}
}