Website before editing

This commit is contained in:
2026-03-02 19:50:11 -08:00
parent 0925cc30df
commit a1a3e02dca
16 changed files with 4208 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
})