Rendered via Build-time
Location: New York City, NY
Temperature: 3°C
Wind Speed: 7.4 km/h
Rendered at: 2025-11-19T12:24:29.399Z
Pages are pre-rendered at build time and served as static HTML. This is the fastest option as pages are generated once and cached on the CDN.
Server Duration
418.81ms
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/ssg/page.tsxexport const revalidate = false;
export default async function Page() {
const data = await fetchData();
return <DataCard data={data} />;
}Key Configuration: