Initial commit

This commit is contained in:
2026-02-28 14:20:57 +01:00 Unverified
commit 2cb93b86a3
12 changed files with 3839 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// vite.config.js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
})