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

29 lines
834 B
JavaScript
Raw Normal View History

2024-04-12 17:57:52 +08:00
module.exports = {
2024-07-17 11:06:43 +08:00
chainWebpack: config => {
config.plugins.delete('case-sensitive-paths')
},
2024-04-12 17:57:52 +08:00
devServer: {
port: 1887,
proxy: {
'/api': {
2024-10-24 16:28:13 +08:00
// target: 'http://10.165.0.173:8000',
// target: 'http://192.168.1.115:8000',
target: 'http://39.98.44.136:6013',
2024-04-12 17:57:52 +08:00
ws: true,
2026-02-14 10:12:38 +08:00
changeOrigin: true,
2024-04-12 17:57:52 +08:00
pathRewrite: {
2024-04-23 21:08:23 +08:00
'^/api': '/'
2024-04-12 17:57:52 +08:00
}
},
'/qq/map': {
//本地服务接口地址
target: 'https://apis.map.qq.com',
ws: true,
2026-02-14 10:12:38 +08:00
changeOrigin: true,
2024-04-12 17:57:52 +08:00
pathRewrite: {
'^/qq/map': '/'
}
}
}
}
};