Files
jobslink-user-clent/vue.config.js
史典卓 47c1418d2a flat,logo
2025-01-16 09:42:42 +08:00

26 lines
711 B
JavaScript

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