Files
jobslink-user-clent/vue.config.js
史典卓 29cb92224b flat: 123
2024-10-24 16:28:13 +08:00

26 lines
704 B
JavaScript

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