This page shows how to use Corsfix as a proxy to bypass CORS errors in Fetch requests.
// basic usagefetch("https://proxy.corsfix.com/?<TARGET_URL>"); // with headers overridefetch("https://proxy.corsfix.com/?<TARGET_URL>", { headers: { "x-corsfix-headers": JSON.stringify({ Origin: "https://www.google.com", Referer: "https://www.google.com", }), },});