initial commit

This commit is contained in:
2025-12-13 17:40:55 +01:00
parent 3219445d37
commit 726db69115
32 changed files with 4411 additions and 264 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
})