Reestructuración modular integral de servicios, reorganización de gestión en docs/ y limpieza profunda del repositorio

This commit is contained in:
Ricardo Monla
2026-03-06 18:03:07 -03:00
parent 15725e0b3c
commit ac9bdf516b
286 changed files with 36187 additions and 112775 deletions
@@ -0,0 +1,22 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
base: '/bitacoras/',
server: {
host: true,
port: 5173,
strictPort: true,
cors: true,
allowedHosts: ['ns8.frlr.utn.edu.ar', 'localhost'],
proxy: {
'/bitacoras/api': {
target: 'http://api:3001',
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/bitacoras\/api/, '/api')
}
}
},
define: { 'import.meta.env.VERSION': JSON.stringify('1.0.0') }
});