What problem does it solve? Deploying a TanStack Start application requires provider-specific configuration, correct SSR behavior per route, and proper SEO metadata, and mistakes in any of these cause runtime failures or poor search visibility. ## Core Features & Use Cases - Hosting Provider Setup: Configure deployments for Cloudflare Workers, Netlify, Vercel, Node.js/Docker, Bun, and Railway via Vite and Nitro plugins. - Selective SSR: Control server rendering per route with ssr true, false, or data-only, including functional SSR decisions and inheritance rules. - Static Prerendering & SEO: Generate static HTML at build time and manage meta tags, Open Graph, JSON-LD structured data, and dynamic sitemaps. - Use Case: Deploy a TanStack Start app to Cloudflare Workers with nodejs_compat enabled, prerender marketing pages statically, disable SSR on the dashboard route, and serve a dynamic sitemap.xml from a server route. ## Quick Start Configure my TanStack Start app for deployment to Cloudflare Workers with prerendering enabled and per-route SSR settings.