Initialization

This commit is contained in:
AmintaCCCP
2025-06-29 18:44:08 +08:00
parent f40c649ea9
commit a55367f92c
30 changed files with 10058 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'],
},
});