mirror of https://github.com/stashapp/stash.git
Set crossorigin use-credentials for manifest.json. (#2706)
This is necessary when running behind a password-protected reverse proxy, as otherwise Chrome doesn't send HTTP basic auth credentials when requesting this file. See https://stackoverflow.com/questions/6294622/html5-manifest-cache-behind-basic-auth for more information.
This commit is contained in:
parent
d32e375521
commit
813495c7f7
|
@ -14,7 +14,7 @@
|
|||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<link rel="manifest" crossorigin="use-credentials" href="manifest.json" />
|
||||
<title>Stash</title>
|
||||
<script>window.STASH_BASE_URL = "/%BASE_URL%/"</script>
|
||||
</head>
|
||||
|
|
Loading…
Reference in New Issue