-
Notifications
You must be signed in to change notification settings - Fork 255
Description
Is your feature request related to a problem? Please describe.
When trying to set the Cross-Origin-Embedder-Policy header to "require-corp" on my site, requests to application insights (in particular https://australiaeast-0.in.applicationinsights.azure.com//v2/track) are blocked, as they do not have a Cross-Origin-Resource-Policy header.
Describe the solution you'd like
The application insights endpoints to serve a Cross-Origin-Resource-Policy header of the value "cross-origin".
Describe alternatives you've considered
If this was an image or script request, I could add the crossOrigin attribute to the or <script> tag to get around this problem. However, this is a fetch/XHR request, and one that requires cookies if I understand correctly.
Additional context
Cross-Origin-Embedder-Policy is needed to enable the security feature cross-site isolation.