SpyGuard/app/backend/vue.config.js
2022-11-06 15:51:33 +01:00

11 lines
181 B
JavaScript
Executable File

module.exports = {
devServer: {
proxy: {
'^/api': {
target: 'https://localhost:5000',
ws: true,
changeOrigin: true
},
}
}
}