Two Forms of Pre-rendering

February 5, 2024

Next.js has two forms of pre-rendering: Static Generation and Server-Side Rendering. The difference is in when it generates the HTML for a page.

Importantly, Next.js lets you choose which pre-rendering form to use for each page. You can create a "hybrid" Next.js app by using Static for most pages and using Server-Side Rendering for others.

Related:

← Back to Home