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/docs/+layout.server.js

10 lines
191 B

import { get_docs_data, get_docs_list } from '$lib/server/docs/get-docs';
export const prerender = true;
export function load() {
return {
sections: get_docs_list(get_docs_data())
};
}