7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
|
import type { LayoutLoad } from './$types';
|
||
|
|
||
|
export const load = (async () => {
|
||
|
return {};
|
||
|
}) satisfies LayoutLoad;
|
||
|
|
||
|
export const prerender = true;
|