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 - Multi-Provider Hosting Setup: Configure deployment to Cloudflare Workers, Netlify, Vercel, Node.js/Docker, Bun, and Railway via Vite and Nitro plugins. - Selective SSR and Prerendering: Control server rendering per route with ssr true, false, or data-only, and generate static HTML at build time with crawlLinks. - SEO and Head Management: Define meta tags, Open Graph data, JSON-LD structured data, and dynamic sitemaps via server routes. - Use Case: Deploy a SaaS marketing site to Cloudflare Workers with static prerendering for landing pages, ssr: false for the dashboard, and a dynamic sitemap.xml generated from your posts. ## Quick Start Configure my TanStack Start app to deploy to Cloudflare Workers with prerendering enabled and per-route SSR settings.