Hey folks!
I am building an app using Remix which does server side rendering by default and it looks like this library relies on the window object which is only available in client side browser contexts and it fails with the following error when the same page tries to render on the server.
ReferenceError: window is not defined
Is it possible to update the library to remove its reliance on the window object so it can be used for Server Side Rendering which is very common for ecommerce applications where your library will likely get the most use?
Hey folks! I am building an app using Remix which does server side rendering by default and it looks like this library relies on the window object which is only available in client side browser contexts and it fails with the following error when the same page tries to render on the server.
ReferenceError: window is not defined
Is it possible to update the library to remove its reliance on the window object so it can be used for Server Side Rendering which is very common for ecommerce applications where your library will likely get the most use?
Thank you! Shri