Files
yusheng-h5/vue.config.js
2026-01-29 18:26:32 +08:00

19 lines
400 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://vsyusheng.qxhs.xyz',
target: 'https://yushengapi.qxyushen.top',
// target: 'https://test.vespa.qxyushen.top',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}