Match rendering strategy to your requirements.
Choose CSR when:
- App is behind authentication
- SEO doesn't matter
- Rich interactivity needed
Choose SSR when:
- SEO matters and content changes frequently
- Personalized content per request
- Fast first paint needed
Choose SSG when:
- Content rarely changes
- Maximum performance needed
- Many pages with same structure
Choose ISR when:
- Content updates periodically
- Can tolerate brief staleness
- Need SSG performance with fresher data