Skip to content

Latest commit

 

History

History
87 lines (75 loc) · 4.82 KB

overview.md

File metadata and controls

87 lines (75 loc) · 4.82 KB
description
Next.js allows you to fetch data in multiple ways, with pre-rendering, server-side rendering or static-site generation, and incremental static regeneration. Learn how to manage your application data in Next.js.

Data Fetching Overview

Examples

Data fetching in Next.js allows you to render your content in different ways, depending on your application's use case. These include pre-rendering with Server-side Rendering or Static Generation, and updating or creating content at runtime with Incremental Static Regeneration.

Learn more