株式会社オブライト
Web Frontend2026-05-17

SSR (Server-Side Rendering)

Also known as: Server-Side Rendering / サーバーサイドレンダリング

A rendering strategy where the server generates HTML on every request. It offers fast initial load and SEO benefits, making it suitable for dynamic or user-specific content. In Next.js, getServerSideProps and App Router defaults support SSR.


Overview

SSR generates complete HTML on the server for each request. Content is immediately visible, but full interactivity requires client-side hydration, which takes additional time. Streaming SSR progressively sends HTML chunks to improve perceived performance.

When to Use SSR vs SSG vs ISR

SSR suits authenticated dashboards and frequently changing data. Static content is best served with SSG, while ISR works for content that needs periodic regeneration. The Vercel + Next.js 16 guide covers rendering strategy selection.

Related Columns

Related Terms

Feel free to contact us

Contact Us