Update favicons.html

added crossorigin="use-credentials" to avoid 401 if the Site is protected with Http Basic Auth
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
This commit is contained in:
FileFabrik 2021-05-28 10:18:39 +02:00 committed by GitHub
parent e6ab5a45cd
commit c7fd5ff155
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
<link rel="apple-touch-icon" sizes="180x180" href="{{ "apple-touch-icon.png" | relURL }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon-32x32.png" | relURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ "favicon-16x16.png" | relURL }}">
<link rel="manifest" href="{{ "site.webmanifest" | relURL }}">
<link rel="manifest" crossorigin="use-credentials" href="{{ "site.webmanifest" | relURL }}">