Files
datakeep/frontend/vue.config.js

13 lines
183 B
JavaScript
Raw Normal View History

2026-02-09 18:07:46 +08:00
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true
}
}
},
transpileDependencies: true
}