# Conflicts:
#	README.md
This commit is contained in:
2025-06-29 17:10:46 +02:00
parent cbc2794b35
commit eaf969557f
18 changed files with 4354 additions and 0 deletions

11
vite.config.ts Normal file
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()
],
})