I can't use fetch in workers
Hi, I'm having a problem with fetching external links, I'm using Worker and on site the fetch works for external links but when I deploy to Cloudflare, the fetch stops working
That's my code
1 Reply
Should the line
return new Response(JSON.stringify(response.json()), {
be return new Response(JSON.stringify(await response.json()), {
?