scaffolding

This commit is contained in:
2026-02-23 12:00:16 -07:00
commit 3de4cdac62
21 changed files with 2598 additions and 0 deletions

13
client/vite.config.ts Normal file
View File

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