Files
my-h5/vue.config.js
2025-09-26 14:50:30 +08:00

12 lines
206 B
JavaScript

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