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
SSR will use JSON.stringify method stringify initial state to window.__INITIAL_STATE__
but this initial state has circular quote which will throw error like TypeError: Converting circular structure to JSON
Is there any way to avoid this, or only thing I can do is to remove this circular state?
What is expected?
use something like [Circular] to avoid throwing error
What is actually happening?
TypeError: Converting circular structure to JSON
It's not convenient to make minimal reproduction on JSFiddle because of the webpack step.