Switch to Vite for this, since it's one page and simple

This commit is contained in:
2026-02-17 14:40:37 -07:00
parent 4945b0513f
commit 5e94a8ac5f
24 changed files with 359 additions and 666 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [['babel-plugin-react-compiler']],
},
}),
tailwindcss(),
],
})