Next.js server rendering
13 June 2025 (Updated 13 June 2025)
What do we mean by server-rendering?
In Next.js, layouts and pages are React Server Components by default. On initial and subsequent navigations, the React Server Component Payload is generated on the server before being sent to the client.
There are two types of server rendering:
- Static rendering (also known as prerendering)
- Dynamic rendering
Tagged:
Next.js