Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-10-07 23:52:55 +02:00
commit a4fd5fd2d9
61 changed files with 18951 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [react(), tsconfigPaths()],
server: {
host: '0.0.0.0', // 🔥 Escucha en todas las interfaces
port: 5173, // Puedes cambiarlo si lo deseas
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './vitest.setup.mjs',
},
});