first commit

This commit is contained in:
2026-07-06 13:54:26 -04:00
commit 78d48f1422
18 changed files with 3037 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [tailwindcss(), react()],
base: '/dashboard/'
})