Files
yusheng-h5/vue.config.js

15 lines
320 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-03 18:59:18 +08:00
target: 'https://test.vespa.qxyushen.top',
2025-08-11 11:06:07 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}