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
Add the option that allows to place <script> at the end of <body> instead of <head>.
Reasoning: a react app throws this error https://legacy.reactjs.org/docs/error-decoder.html/?invariant=299.
The problem is, app renders page inside of <div id="root"> tag, and <script> is loaded before is initialized even though it has defer parameter.
The text was updated successfully, but these errors were encountered:
Add the option that allows to place
<script>
at the end of<body>
instead of<head>
.Reasoning: a react app throws this error https://legacy.reactjs.org/docs/error-decoder.html/?invariant=299.
The problem is, app renders page inside of
<div id="root">
tag, and <script> is loaded before is initialized even though it has defer parameter.The text was updated successfully, but these errors were encountered: