diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts index b120f84..cd9fbf3 100644 --- a/src/routes/+layout.ts +++ b/src/routes/+layout.ts @@ -1,8 +1,10 @@ import type { LayoutLoad } from "./$types"; import { initNdk } from "$lib/ndk"; +export const ssr = false; + export const load: LayoutLoad = () => { return { ndk: initNdk(), }; -} +};