What problem does it solve? Deploying a TanStack Start application requires choosing the right hosting adapter, configuring per-route server-side rendering, and setting up prerendering and SEO metadata, all of which differ significantly across platforms like Cloudflare Workers, Netlify, and Node.js. ## Core Features & Use Cases - Multi-Platform Deployment: Configure hosting for Cloudflare Workers, Netlify, Vercel, Railway, Node.js/Docker, and Bun with the correct Vite plugins and build settings. - Selective SSR Control: Set ssr: true, false, or 'data-only' per route, including functional SSR decisions and inheritance rules between parent and child routes. - Prerendering and SEO: Generate static HTML at build time, manage meta tags and JSON-LD structured data via the head function, and build dynamic sitemaps with server routes. - Use Case: Deploy a TanStack Start app to Cloudflare Workers with the nodejs_compat flag, prerender marketing pages statically, and render a dashboard route client-only with ssr: false. ## Quick Start Configure my TanStack Start app to deploy to Cloudflare Workers with prerendering enabled and per-route SSR settings.