Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cnmoro/f8877f167aac8ecd35b4f916e1effc9c to your computer and use it in GitHub Desktop.
Save cnmoro/f8877f167aac8ecd35b4f916e1effc9c to your computer and use it in GitHub Desktop.
Fix 'Uncaught ReferenceError: global is not defined'
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