Files
yusheng-h5/vue.config.js
2025-08-11 11:06:07 +08:00

12 lines
207 B
JavaScript

// vue.config.js
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://chat.qxmier.com',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}