Rendered via Cached (30s)
Location: New York City, NY
Temperature: -2.8°C
Wind Speed: 11.9 km/h
Rendered at: 2026-03-02T09:19:31.897Z
Combines the best of SSG and SSR. Pages are statically generated but can be regenerated in the background after a specified time interval.
Server Duration
493.02ms
TTFB
measuring...
DOM Ready
measuring...
Full Load
measuring...
Server Duration: Time to render on server (SSG at build, SSR/ISR/Edge per request)
TTFB: Time to First Byte from browser perspective (network + server time)
DOM/Full Load: Browser-side parsing and resource loading times
app/isr/page.tsxexport const revalidate = 30;
export default async function Page() {
const data = await fetchData();
return <DataCard data={data} />;
}Key Configuration: