Ensure that documentation about server-side rendering (SSR), static site generation (SSG), and related rendering strategies is technically accurate and complete. Avoid making misleading claims about performance characteristics or technical behavior, and include all relevant benefits and use cases.

Common issues to watch for:

Example of problematic content:

## Performance considerations
### Bundle size optimization
Different strategies affect bundle size:
- **SSR**: Initial bundle can be smaller with code splitting
- **SSG**: Optimal with incremental hydration and `@defer`

This section makes unsupported claims about SSR/SSG affecting bundle size when the actual factor is lazy loading and code splitting techniques that are independent of rendering strategy.

When documenting rendering strategies, verify technical claims against actual framework behavior and ensure comprehensive coverage of all benefits and limitations.