Files
jobslink-user-clent/vue.config.js
2024-02-05 10:16:08 +08:00

42 lines
848 B
JavaScript

// module.exports = {
// devServer: {
// port: 8080,
// proxy: {
// '/api': {
// //本地服务接口地址
// target: 'http://m.jl.com',
// ws: true
// },
// '/blackboard': {
// //本地服务接口地址
// target: 'http://m.jl.com',
// ws: true
// },
// }
// }
// };
module.exports = {
devServer: {
port: 1887,
proxy: {
'/api': {
//本地服务接口地址
target: 'http://39.98.184.58:8000',
ws: true,
pathRewrite: {
'^/api': '/'
}
},
'/qq/map': {
//本地服务接口地址
target: 'https://apis.map.qq.com',
ws: true,
pathRewrite: {
'^/qq/map': '/'
}
}
}
}
};