initial commit

This commit is contained in:
2025-07-08 11:16:51 -07:00
commit a0f2f63e6e
30 changed files with 5501 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import jsconfigPaths from "vite-jsconfig-paths"
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), jsconfigPaths()],
})