shelley/ui: fix manifest.json failing to load behind auth proxy

anoworl created

Add crossorigin="use-credentials" to manifest link so cookies are sent
when fetching manifest.json through authentication proxies.

Change summary

ui/src/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

ui/src/index.html 🔗

@@ -10,7 +10,7 @@
     <meta name="apple-mobile-web-app-capable" content="yes" />
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
     <meta name="apple-mobile-web-app-title" content="Shelley" />
-    <link rel="manifest" href="/manifest.json" />
+    <link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
     <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
     <title>Shelley Agent</title>
     <link rel="stylesheet" href="/styles.css" />