From d62bff8236e548e7c4f9881c8c5e685ae2a658ec Mon Sep 17 00:00:00 2001 From: buttercat1791 Date: Wed, 1 Oct 2025 15:32:19 -0500 Subject: [PATCH] Turn off SSR for all pages --- src/routes/+layout.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(), }; -} +};