You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/sites/svelte.dev/src/routes/blog/+page.server.js

10 lines
200 B

import { get_blog_data, get_blog_list } from '$lib/server/blog/index.js';
export const prerender = true;
export async function load() {
return {
posts: get_blog_list(await get_blog_data())
};
}