Initial commit

This commit is contained in:
2025-11-09 17:52:30 +01:00
parent 22b558ed78
commit a2e823c4c3
21 changed files with 5458 additions and 328 deletions

16
frontend/vite.config.js Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
server: {
host: "localhost",
port: 5173,
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})