Files
yusheng-h5/vue.config.js
2025-12-03 18:59:18 +08:00

15 lines
320 B
JavaScript

// vue.config.js
// http://1.13.101.98 正式
//https://test.vespa.qxyushen.top
// 新 https://yushengapi.qxyushen.top
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://test.vespa.qxyushen.top',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}