Rendered via Build-time
Location: New York City, NY
Temperature: 5.8°C
Wind Speed: 15.6 km/h
Rendered at: 2026-01-15T10:06:10.106Z
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
447.53ms
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: