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
{{ message }}
This repository has been archived by the owner on Feb 28, 2018. It is now read-only.
this line references "navigator" which doesn't exist on the server, it could be changed to something like: if (typeof navigator !== 'undefined' && !/Firefox/.test(navigator.userAgent)) return; to support server side rendering
The text was updated successfully, but these errors were encountered:
when i tested my previous pull request i must have accidentally been running webpack's hot-dev-server which doesn't quite work the same a a deployed version of a prerendered app...
when i went to deploy i found it still wasn't working with prerendering because of the getDOMNode() call in the same timeout function. #39 fixes it (and was tested in a real deployment ;)
this line references "navigator" which doesn't exist on the server, it could be changed to something like:
if (typeof navigator !== 'undefined' && !/Firefox/.test(navigator.userAgent)) return;
to support server side renderingThe text was updated successfully, but these errors were encountered: