← Back to overview

Static — Prerendered at Build Time

This page was prerendered during nuxt build. The HTML file exists on disk and is served directly by Netlify's CDN as a static asset. No server function is involved at all.

StrategyStatic
Rendered at

2026-02-13T17:29:35.198Z

If this timestamp stays the same across reloads, the page is being served from cache.

Expected Response Headers

Cache-Control: public, max-age=0, must-revalidate
Cache-Status: Static file (no server involved)

How it works

  • Nuxt routeRules: { prerender: true } generates HTML at build time
  • The timestamp is baked into the HTML during deployment
  • Netlify serves it as a static file from its global CDN
  • No server function runs — it's purely static
  • Timestamp never changes until the next deploy

Use cases

  • Marketing landing pages, docs, legal pages
  • Content that only changes on deployment
  • Maximum performance — no server latency at all