Kevin Groat

Results 4 comments of Kevin Groat

I had the same error message, and realized that `target: 'node'` was set in my webpack config accidentally. Taking that out fixed it like a charm.

One way to fix this extension breaking pages is to change the line in question to: ```js if (window.__REDUX_DEVTOOLS_EXTENSION__ ) { window.__REDUX_DEVTOOLS_EXTENSION__.connect = __XSTATE_DEVTOOLS_EXTENSION__.connect; } else { window.__REDUX_DEVTOOLS_EXTENSION__ = __XSTATE_DEVTOOLS_EXTENSION__;...

The correct solution is as @Wolf-P pointed out, but it might be good to have a meaningful error message when this issue arises.