jsheroes/community-help

isomorphic-fetch not working in Microsoft Edge

alexnm opened this issue · 1 comments

Hello clujsers,

I currently have this very strange problem where isomorphic-fetch is not working well in Edge 14, I'm curios if anyone else encountered this problem, I have not found any issues online.

I need the isomorphic-fetch package because I'm using server side rendering so I need this to work from both node and from the browser. The node calls work perfectly, I get a fully rendered page with all the data, but as soon as I hit the browser, the calls are simply not done, there's nothing in the network tab and no error.

Note: I'm using version 2.2.1 of the package.

Got back to this issue after a few months and found the problem. Because of some abstraction on top of the fetch api I was sending body: null on GET requests and apparently Edge doesn't like that so it was blocking my requests... strange issue