I've been trying to get this working for hours now but I keep running into one issue after another. What is the recommended way to install `fetch` globally so that this package works? It seems that ``` import {fetch as fetchPolyfill} from 'whatwg-fetch'; global.fetch = fetchPolyfill; ``` in my index.js file is the only thing that works, which then gives me a `Require cycle:` error that can't be dismissed.. Even after I do this when I copy and paste the code from the example i just get a `TypeError: Network request failed` error. Unfortunately there isn't much info in the logs to tell me whats going on here. I'm happy to provide any other info to get this figured out!
I've been trying to get this working for hours now but I keep running into one issue after another.
What is the recommended way to install
fetchglobally so that this package works? It seems thatin my index.js file is the only thing that works, which then gives me a
Require cycle:error that can't be dismissed..Even after I do this when I copy and paste the code from the example i just get a
TypeError: Network request failederror.Unfortunately there isn't much info in the logs to tell me whats going on here.
I'm happy to provide any other info to get this figured out!