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
when rendering in serverside (i.e. node), getting this error:
window is not defined
Obviously mutation observer is irrelevant to node environment, unless someone goes a long way to polyfill window and the dom.
My suggestion is to skip execution when typeof window === "undefined". (especially window.* calls)
The text was updated successfully, but these errors were encountered:
when rendering in serverside (i.e. node), getting this error:
Obviously mutation observer is irrelevant to node environment, unless someone goes a long way to polyfill window and the dom.
My suggestion is to skip execution when
typeof window === "undefined"
. (especiallywindow.*
calls)The text was updated successfully, but these errors were encountered: