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
In browsers like older Safaris that don't support ResizeObserver, the console warning fails with Can't find variable: process.
I suspect this is because the relayout function is being converted to a string and/or the bundler doesn't compile out process.env.NODE_ENV in third-party dependencies.
Merging #36 may solve this issue because it avoids accessing process in the injected <script>.
The text was updated successfully, but these errors were encountered:
In browsers like older Safaris that don't support
ResizeObserver
, the console warning fails withCan't find variable: process
.I suspect this is because the
relayout
function is being converted to a string and/or the bundler doesn't compile outprocess.env.NODE_ENV
in third-party dependencies.Merging #36 may solve this issue because it avoids accessing
process
in the injected<script>
.The text was updated successfully, but these errors were encountered: