Ajoutez des fichiers projet.

This commit is contained in:
2025-08-06 12:07:11 +02:00
parent 3c5c65af00
commit 238a7a31b0
36 changed files with 7934 additions and 0 deletions

10
project/vite.config.ts Normal file
View File

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