fix(client): print broken due to lack of query forwarding

; Conflicts:
;	apps/client/src/index.html
This commit is contained in:
Elian Doran 2026-01-07 20:30:59 +02:00
parent e47c848ec8
commit 18d701525e
No known key found for this signature in database

View File

@ -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 */