From f625c7b2632a0593bea33228e74f8e8bbf994980 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 2 Apr 2026 12:14:50 +0200 Subject: [PATCH] fix(manacore/web): disable SSR for llm-test page @mlc-ai/web-llm is browser-only (WebGPU) and cannot be resolved during SSR build in Docker. Setting ssr: false for the page. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/manacore/apps/web/src/routes/(app)/llm-test/+page.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 apps/manacore/apps/web/src/routes/(app)/llm-test/+page.ts diff --git a/apps/manacore/apps/web/src/routes/(app)/llm-test/+page.ts b/apps/manacore/apps/web/src/routes/(app)/llm-test/+page.ts new file mode 100644 index 000000000..a3d15781a --- /dev/null +++ b/apps/manacore/apps/web/src/routes/(app)/llm-test/+page.ts @@ -0,0 +1 @@ +export const ssr = false;