aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-framework-next/client.development.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-framework-next/client.development.tsx')
-rw-r--r--packages/bun-framework-next/client.development.tsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/packages/bun-framework-next/client.development.tsx b/packages/bun-framework-next/client.development.tsx
index 5f25619ce..2dcffe55c 100644
--- a/packages/bun-framework-next/client.development.tsx
+++ b/packages/bun-framework-next/client.development.tsx
@@ -1,20 +1,6 @@
globalThis.global = globalThis;
globalThis.Bun_disableCSSImports = true;
-// We're disabling Object.freeze because it breaks CJS => ESM and can cause
-// issues with Suspense and other things that expect the CJS module namespace
-// to be mutable when the ESM module namespace is NOT mutable
-const freezer = new WeakSet();
-
-globalThis.Object.freeze = function freeze(obj) {
- freezer.add(obj);
- return obj;
-};
-
-globalThis.Object.isFrozen = function isFrozen(obj) {
- return freezer.has(obj);
-};
-
import * as React from "react";
var onlyChildPolyfill = React.Children.only;
React.Children.only = function (children) {