Files
jobslink-user-clent/vue.config.js
18500206848 d4993b89e8 111
2024-03-31 02:44:00 +08:00

24 lines
540 B
JavaScript

module.exports = {
devServer: {
port: 1887,
proxy: {
'/api': {
target: 'http://localhost:8000', // 内网
// target: 'http://192.168.1.109:8000', // 本地测试
ws: true,
pathRewrite: {
'^/api': '/'
}
},
'/qq/map': {
//本地服务接口地址
target: 'https://apis.map.qq.com',
ws: true,
pathRewrite: {
'^/qq/map': '/'
}
}
}
}
};