Rendered via Cached (30s)
Location: New York City, NY
Temperature: 24.7°C
Wind Speed: 4.3 km/h
Rendered at: 2026-07-18T16:29:50.343Z
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
447.00ms
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: