Files
yourpart3/frontend/vue.config.js
Torsten Schulz 3880a265eb Initial commit
2024-07-17 22:24:56 +02:00

14 lines
220 B
JavaScript

module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:3001',
changeOrigin: true
}
},
client: {
webSocketURL: 'ws://localhost:8080/ws',
},
}
};