humble beginnings (frontend edition)

This commit is contained in:
wisplite
2025-08-27 02:59:44 -05:00
parent 362d61eb48
commit 2ec1b06716
15 changed files with 3537 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
})