Rendering
Understand SSR, CSR, and ISR tradeoffs and when to use each approach.
Overview
Rendering strategy impacts performance, SEO, and how quickly users see content. In practice, you often mix approaches: server rendering for public pages and client rendering for interactive areas.
Prefer a server-first approach for content-heavy routes (docs/blog/changelog). Add client-side fetching only where interactivity requires it.
Choose a strategy
Use these guides as building blocks. Most teams start with SSR for public pages and add CSR only where interaction requires it.