In Server Components, Next can cache `fetch()` results and dedupe requests. You can opt out with `cache: 'no-store'` or set revalidation with `next: { revalidate: seconds }` to control freshness.
const res = await fetch('https://example.com/api', { next: { revalidate: 60 }, })