mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 20:59:57 +01:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
export default defineCachedEventHandler(async (event) => {
|
|
const { statusPage } = useRuntimeConfig(event)
|
|
return await $fetch(statusPage)
|
|
}, {
|
|
maxAge: 60 * 60,
|
|
name: 'status-page'
|
|
})
|