2023-03-14 00:16:19 +01:00
|
|
|
import type { LayoutLoad } from "./$types";
|
|
|
|
|
2023-03-13 17:11:05 +01:00
|
|
|
export const ssr = false;
|
2023-03-14 00:16:19 +01:00
|
|
|
|
|
|
|
export const load = (async ({ parent }) => {
|
|
|
|
const data = await parent();
|
|
|
|
return data;
|
|
|
|
}) satisfies LayoutLoad;
|