Guardando estado actual

This commit is contained in:
2025-12-20 22:57:59 +01:00
commit 8da82f4150
30 changed files with 576 additions and 0 deletions

14
vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
// Permite que el servidor escuche en todas las interfaces de red (necesario para Docker)
host: true,
// Lista blanca de dominios permitidos
allowedHosts: [
'masmorres.martivich.es',
'localhost',
'127.0.0.1'
]
}
});