Files
system-builder/frontend-frame/vue.config.js

10 lines
192 B
JavaScript

module.exports = {
devServer: {
proxy: {
'/api/': {
target: 'http://localhost:3000',
changeOrigin: true
},
}
}
}