V1 de backend funcional

This commit is contained in:
Sebastian
2025-09-08 21:46:10 +00:00
commit 48f53280be
58 changed files with 7646 additions and 0 deletions

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

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})