react-form-builder
react-form-builder copied to clipboard
global can't be used in context of browser
Encountring following error:
"Uncaught ReferenceError: global is not defined at node_modules/draft-js/node_modules/fbjs/lib/setImmediate.js"
I worked around this using the suggestion in here: https://stackoverflow.com/questions/65586906/react-and-electron-with-draft-js-global-is-not-defined
I basically added this in the index.html head section:
<script> const global = globalThis; </script>