From 18d701525ebf94ca6dacd907759d59a0a3943e85 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 7 Jan 2026 20:30:59 +0200 Subject: [PATCH] fix(client): print broken due to lack of query forwarding ; Conflicts: ; apps/client/src/index.html --- apps/client/src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/index.html b/apps/client/src/index.html index 4bd8a775a..0ef0cf29d 100644 --- a/apps/client/src/index.html +++ b/apps/client/src/index.html @@ -35,7 +35,7 @@ } async function setupGlob() { - const response = await fetch("./bootstrap"); + const response = await fetch(`/bootstrap${window.location.search}`); const json = await response.json(); global = globalThis; /* fixes https://github.com/webpack/webpack/issues/10035 */