summaryrefslogtreecommitdiff
path: root/src/routes/+page.server.ts
blob: 8f4a3a7d49b6a4bbbcf9995cba117f4e512ca1a8 (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()
	};
};