Initial Commit

This commit is contained in:
Ryan Malloy 2025-03-14 14:31:36 -06:00
commit 759b0f7814
27 changed files with 5526 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'],
},
})