'use client'; import Link from 'next/link'; import { ServerLogViewer } from '@/components/ServerLogViewer'; export default function ServerLogsPage() { const backendUrl = typeof window !== 'undefined' ? `${window.location.protocol}//${window.location.hostname}:3000` : ''; return (
← Ajustes

Logs del servidor

Stream en tiempo real via SSE. Las líneas erróneas se resaltan en rojo. Máximo 200 líneas.

{/* Altura acotada al viewport: el visor ocupa solo la parte visible y el resto hace scroll interno. */}
); }