Files
midi-h5/vue.config.js

14 lines
283 B
JavaScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
// vue.config.js
2025-09-02 16:28:18 +08:00
// http://md.xscmmidi.site 正式api
// http://tmd.xscmmidi.site 测试api
2025-08-11 11:51:38 +08:00
module.exports = {
devServer: {
proxy: {
'/api': {
2025-09-02 16:28:18 +08:00
target: 'http://md.xscmmidi.site',
2025-08-11 11:51:38 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}