KasperskyLab-TinyCheck/app/backend/vue.config.js
2020-11-24 19:45:03 +01:00

11 lines
181 B
JavaScript

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