initial commit

This commit is contained in:
Harivansh Rathi 2025-02-20 19:36:21 -05:00
commit 357979d0af
31 changed files with 6645 additions and 0 deletions

15
vite.config.ts Normal file
View file

@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
optimizeDeps: {
exclude: ['lucide-react'],
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});