1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

fix(web): add crossorigin to link manifest for PWA (#13708)

Fix for 13695 add crossorigin to link manifest for PWA
This commit is contained in:
automaton82 2024-10-23 21:53:23 -04:00 committed by GitHub
parent 7e9fb5df5e
commit a1dd587590
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,7 +86,7 @@
<svelte:head> <svelte:head>
<title>{$page.data.meta?.title || 'Web'} - Immich</title> <title>{$page.data.meta?.title || 'Web'} - Immich</title>
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
<meta name="theme-color" content="currentColor" /> <meta name="theme-color" content="currentColor" />
<AppleHeader /> <AppleHeader />