Netlify sites rejecting fetch requests from StackBlitz

Workaround

For now, we will work around the problem by setting CORS headers manually on the static site, as described by @hrishikesh here:

netlify.toml

[[headers]]
  for = "/*"
  [headers.values]
    Access-Control-Allow-Origin = "*"
1 Like