webapp/src/pages/404.astro
2022-09-22 11:37:49 +02:00

12 lines
270 B
Plaintext

---
// TODO: sync with client router
import About from '../layouts/about.astro'
import { FourOuFourView } from '../components/Views/FourOuFour'
Astro.response.headers.set('Cache-Control', 's-maxage=1, stale-while-revalidate')
---
<About>
<FourOuFourView />
</About>