SpyGuard/app/frontend/vue.config.js

11 lines
180 B
JavaScript
Raw Permalink Normal View History

2022-11-06 15:51:33 +01:00
module.exports = {
devServer: {
proxy: {
'^/api': {
target: 'http://localhost:8040',
ws: true,
changeOrigin: true
},
}
}
}