What problem does it solve? Setting up server-side rendering with TanStack Router requires coordinating server entries, client hydration, loader dehydration, and document head management, and mistakes cause hydration mismatches or runtime crashes. ## Core Features & Use Cases - SSR Setup Patterns: Configure non-streaming SSR with renderRouterToString or streaming SSR with renderRouterToStream via createRequestHandler and default handlers. - Document Head Management: Control title, meta, links, and body scripts per route with the head option, HeadContent, Scripts, and ScriptOnce components. - Use Case: Integrate TanStack Router SSR into an existing Express server by converting Express requests to Web API Requests and piping the rendered response stream back. ## Quick Start Set up streaming SSR for my TanStack Router app with a shared router factory, server entry, and client hydration entry.