Init project

This commit is contained in:
Thibault Pouch
2026-02-18 09:15:38 +01:00
commit 0fb3fc77cd
43 changed files with 9628 additions and 0 deletions

View File

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