Proyecto inicial, con fallitos de CSS. (Gracias Karim.)

This commit is contained in:
2026-02-18 03:09:08 +01:00
commit c7b9f87ad2
20 changed files with 9062 additions and 0 deletions

9
vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 9001
}
})