blob: c1a5530f78ea7e1df8436e3f456caada265653de (
plain)
1
2
3
4
5
6
7
8
|
import { getPosts } from "$lib/utils/posts.server";
import type { PageServerLoad } from "./$types";
export const load: PageServerLoad = async () => {
return {
posts: getPosts(),
};
};
|