Add files via upload

This commit is contained in:
Michilis
2025-02-09 17:54:41 +01:00
committed by GitHub
parent aab4a541a8
commit 5865448536
11 changed files with 6021 additions and 0 deletions

10
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'],
},
});