This component is suffering the same Webpack problem as detailed over at webpack/webpack#6522 - when running in a server side render function there is a ReferenceError: window is not defined error.
Can be solved by setting globalObject:(typeof self !== 'undefined' ? self : this)` in the webpack config, I tried it with a local build and it's working well
This component is suffering the same Webpack problem as detailed over at webpack/webpack#6522 - when running in a server side render function there is a ReferenceError: window is not defined error.
Can be solved by setting
globalObject:
(typeof self !== 'undefined' ? self : this)` in the webpack config, I tried it with a local build and it's working well