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
var _Raven = window.Raven; errors out when server side rendering is done.
When we import import ravenMiddleware from 'redux-raven-middleware'; for redux integration with raven, server side doesn't have window object due to which the above mentioned line errors out.
We can add conditional execution of this middleware but since the declaration is done at compile time we're unable to escape that
The text was updated successfully, but these errors were encountered:
var _Raven = window.Raven;
errors out when server side rendering is done.When we import
import ravenMiddleware from 'redux-raven-middleware';
for redux integration with raven, server side doesn't havewindow
object due to which the above mentioned line errors out.We can add conditional execution of this middleware but since the declaration is done at compile time we're unable to escape that
The text was updated successfully, but these errors were encountered: