Initial commit

This commit is contained in:
Torsten Schulz
2024-07-17 22:24:56 +02:00
commit 3880a265eb
126 changed files with 10959 additions and 0 deletions

13
frontend/vue.config.js Normal file
View File

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