Files
yusheng-h5/vue.config.js

16 lines
368 B
JavaScript
Raw Normal View History

2025-08-11 11:06:07 +08:00
// vue.config.js
2025-11-29 11:33:18 +08:00
// http://1.13.101.98 正式
//https://test.vespa.qxyushen.top
// 新 https://yushengapi.qxyushen.top
2025-08-11 11:06:07 +08:00
module.exports = {
devServer: {
proxy: {
'/api': {
2025-12-31 14:44:40 +08:00
target: 'https://yushengapi.qxyushen.top',
// target: 'https://test.vespa.qxyushen.top',
2025-08-11 11:06:07 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}