feat: first commit

This commit is contained in:
devaine 2025-10-18 12:58:31 -05:00
commit ecb7899a97
No known key found for this signature in database
GPG key ID: 4BA6E50E8768348F
15 changed files with 6603 additions and 0 deletions

7
vite.config.js Normal file
View file

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