initial scaffolding

This commit is contained in:
Nathanvititoe
2025-11-26 00:04:51 -05:00
parent fddad195e1
commit e99f6b9a46
39 changed files with 4536 additions and 0 deletions

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']],
},
}),
],
})