Thank you! This message helped me! This is my config now for anyone this might help: (I'm not sure i

Thank you! This message helped me! This is my config now for anyone this might help: (I'm not sure if I need all the expose headers though)
[
  {
    "AllowedOrigins": [
      "http://localhost:3000",
    ],
    "AllowedMethods": [
      "GET",
      "PUT",
      "HEAD"
    ],
    "AllowedHeaders": [
      "range",
      "Content-Type",
      "Access-Control-Allow-Origin"
    ],
    "ExposeHeaders": [
      "Content-Type",
      "Access-Control-Allow-Origin",
      "ETag"
    ]
  }
]
Was this page helpful?