chore: initial commit

This commit is contained in:
2026-03-04 13:21:16 -06:00
commit 449d8f96c7
17 changed files with 1086 additions and 0 deletions

8
vite.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import react from '@vitejs/plugin-react-swc'
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsConfigPaths(), tanstackStart(), react()]
})