Estructura inicial del frontend

This commit is contained in:
Panchito
2026-06-26 13:07:13 -05:00
commit d6c65c44b1
52 changed files with 10924 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'
export default defineConfig({
plugins: [react()],
server: { port: 3000, host: true }
})