This repository has been archived on 2026-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
jobslink-user-clent/vue.config.js
2026-02-14 10:12:38 +08:00

29 lines
834 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',
target: 'http://39.98.44.136:6013',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/api': '/'
}
},
'/qq/map': {
//本地服务接口地址
target: 'https://apis.map.qq.com',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/qq/map': '/'
}
}
}
}
};