Web Development
What is SSR (Server-Side Rendering)?
Rendering web pages on the server before sending HTML to the browser.
Definition
Server-Side Rendering (SSR) generates the full HTML of a page on the server for each request. The browser receives a complete page that renders immediately, improving perceived load time and SEO. Frameworks like Next.js, Nuxt, and SvelteKit offer SSR. While SSR improves first contentful paint and crawlability, it puts more load on the server compared to static generation or client-side rendering.