website/src/routes/+layout.ts

7 lines
151 B
TypeScript
Raw Normal View History

2023-03-19 18:49:43 +00:00
import type { LayoutLoad } from './$types';
export const load = (async () => {
return {};
}) satisfies LayoutLoad;
export const prerender = true;