Created
October 17, 2019 19:45
-
-
Save cnmoro/f8877f167aac8ecd35b4f916e1effc9c to your computer and use it in GitHub Desktop.
Fix 'Uncaught ReferenceError: global is not defined'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add to index.html head: | |
<script> | |
if (global === undefined) { | |
var global = window; | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment