Files
yusheng-h5/vue.config.js
2025-10-23 16:04:28 +08:00

13 lines
240 B
JavaScript

// vue.config.js
// https://vespa.qxyushen.top
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://vespa.qxyushen.top',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}