Add files via upload

This commit is contained in:
markfulton
2025-08-31 15:13:45 +07:00
committed by GitHub
parent d04fd9d780
commit 9ba8f37fe1
11 changed files with 6976 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'],
},
});