website/src/routes/blog/tags/+page.server.ts

15 lines
271 B
TypeScript
Raw Normal View History

import type { PageServerLoad } from "./$types";
2023-01-25 22:41:11 +05:30
import fetchGhost from "../fetchGhost";
2023-01-25 22:41:11 +05:30
export const load = (async () => {
const data = await fetchGhost("tags");
const meta = {
title: "Blog tags"
}
2023-01-01 04:51:53 +05:30
return {
2023-01-25 22:41:11 +05:30
tags: data,
...meta
}
2023-01-25 22:41:11 +05:30
}) satisfies PageServerLoad;