Server components and data fetching
| Command | Description |
|---|---|
async function Page() | Async component |
const data = await fetch(url) | Direct fetch |
no useEffect needed | Fetch runs on server |
| Command | Description |
|---|---|
fetch(url, { cache: "force-cache" }) | Static (default) |
fetch(url, { cache: "no-store" }) | Dynamic (always fresh) |
fetch(url, { next: { revalidate: 3600 } }) | ISR (time-based) |