Initial commit

This commit is contained in:
LenaGmbh
2026-07-28 21:58:43 +02:00
commit 2129f1f7d0
20 changed files with 3443 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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()],
})