Initial commit

This commit is contained in:
2026-05-18 22:26:10 +02:00
commit db92ad2f88
34 changed files with 2158 additions and 0 deletions

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: './',
})