From 51313ff0d581e5a02ab669cc88edc1f57dc8895e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 28 Jan 2026 22:27:02 +0200 Subject: [PATCH] fix(client): subdir broken due to bootstrap --- apps/client/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/index.ts b/apps/client/src/index.ts index c42ac5d3e..fba6e17d7 100644 --- a/apps/client/src/index.ts +++ b/apps/client/src/index.ts @@ -30,7 +30,7 @@ async function initJQuery() { } async function setupGlob() { - const response = await fetch(`/bootstrap${window.location.search}`); + const response = await fetch(`./bootstrap${window.location.search}`); const json = await response.json(); window.global = globalThis; /* fixes https://github.com/webpack/webpack/issues/10035 */