Files
midi-h5/vue.config.js

12 lines
207 B
JavaScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
// vue.config.js
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://chat.qxmier.com',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}