Files
yusheng-h5/vue.config.js

13 lines
240 B
JavaScript
Raw Normal View History

2025-08-11 11:06:07 +08:00
// vue.config.js
2025-10-23 16:04:28 +08:00
// https://vespa.qxyushen.top
2025-08-11 11:06:07 +08:00
module.exports = {
devServer: {
proxy: {
'/api': {
2025-10-23 16:04:28 +08:00
target: 'https://vespa.qxyushen.top',
2025-08-11 11:06:07 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}