diff --git a/src/client/window.ts b/src/client/window.ts index 8477002..7fb3ac4 100644 --- a/src/client/window.ts +++ b/src/client/window.ts @@ -7,6 +7,8 @@ export const windowProxy = new Proxy(window, { return locationProxy; } else if (propIsString && ["window", "top", "parent", "self", "globalThis"].includes(prop)) { return windowProxy; + } else if (propIsString && prop === "$scramjet") { + return; } return target[prop];