initial commit

This commit is contained in:
2026-04-07 17:41:25 +02:00
commit 1ed9bdfa55
45 changed files with 4712 additions and 0 deletions

18
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [
react(),
],
server: {
host: '0.0.0.0', // needed for docker
port: 5173,
proxy: {
'/api': {
target: 'http://backend:3000',
changeOrigin: true
}
}
}
})