You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Setting up Terser here to workaround a issue where Next.js fails to import from a ESM file that has a reference to `module.exports` somewhere in the file:
// https://github.com/vercel/next.js/issues/57962
// By enabling minification the problematic reference is changed so the issue is avoided.
// The reason this happens is because we're inlining the `debug` module, which is CJS only. We can't stop inlining this module as it breaks Hydrogen compatibility.