Initial commit

This commit is contained in:
2026-03-01 21:12:00 +01:00 Unverified
commit 60e79656c3
535 changed files with 55443 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// vite.config.js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
})