webapp/src/pages/about/guide.astro

15 lines
329 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
import Zine from '../../main.astro'
2022-09-23 18:27:05 +00:00
import { Root } from '../../components/Root'
import { initRouter } from '../../stores/router'
2022-09-09 11:53:35 +00:00
2022-09-23 18:27:05 +00:00
const { pathname, search } = Astro.url
initRouter(pathname, search)
2022-09-09 11:53:35 +00:00
Astro.response.headers.set('Cache-Control', 's-maxage=1, stale-while-revalidate')
---
2022-09-23 18:27:05 +00:00
<Zine>
<Root client:load />
</Zine>