Files
jobslink-user-clent/vue.config.js
2024-07-17 11:06:43 +08:00

25 lines
647 B
JavaScript

module.exports = {
chainWebpack: config => {
config.plugins.delete('case-sensitive-paths')
},
devServer: {
port: 1887,
proxy: {
'/api': {
target: 'http://10.165.0.173:8000',
ws: true,
pathRewrite: {
'^/api': '/'
}
},
'/qq/map': {
//本地服务接口地址
target: 'https://apis.map.qq.com',
ws: true,
pathRewrite: {
'^/qq/map': '/'
}
}
}
}
};