SpyGuard/app/backend/vue.config.js

11 lines
181 B
JavaScript
Raw Normal View History

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