Build Time
2026-01-15T19:27:09.554Z
This timestamp was captured when the page was built
How It Works
1. Astro generates HTML at build time
2. Static files are served from CDN
3. No server runtime needed
4. Fastest possible page loads
5. Perfect for content that rarely changes
Code Example
---
// pages/static.astro
// No special config needed - static is the default!
const buildTime = new Date().toISOString();
---
<Layout>
<h1>Static Page</h1>
<p>Built at: {buildTime}</p>
</Layout>