This commit is contained in:
2026-04-14 18:31:48 +01:00
parent 4275cbd795
commit f4d6a97abe
36 changed files with 8777 additions and 1 deletions

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

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true
}
})