Fixing 401 Error for site.webmanifest File
-
The
site.webmanifest
file is returning a 401 error on the server. This issue can be resolved by updating the<link>
element to include thecrossorigin="use-credentials"
attribute.Example:
original:?<link rel="manifest" href="/site.webmanifest">
corrected:?<link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials">
Could you please make this change to prevent unnecessary errors in the console? Thank you.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.