Rendered via Cached (30s)
Location: New York City, NY
Temperature: 3°C
Wind Speed: 7.4 km/h
Rendered at: 2025-11-19T12:24:29.688Z
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
415.47ms
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: