// EventSnap is a client-only SPA: auth lives in localStorage (JWT) and every page fetches its // data in onMount, so the server has nothing to render but a logged-out skeleton. Disabling SSR // app-wide removes that dead skeleton (empty feeds, "Unbekannt" profile) and — crucially — the // window where server-rendered interactive controls exist BEFORE hydration attaches their handlers. // csr stays on (default). No SEO is lost (private, QR-gated app). export const ssr = false;