fix(frontend): add crossorigin attribute to webmanifest link (#1376)

This commit is contained in:
Alex Cortelyou
2021-04-07 16:31:31 -07:00
committed by GitHub
parent 8ee7693a1f
commit 82ca2f5934

View File

@@ -174,7 +174,11 @@ class MyDocument extends Document {
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<link rel="manifest" href="/site.webmanifest"></link>
<link
rel="manifest"
href="/site.webmanifest"
crossOrigin="use-credentials"
/>
</Head>
<body>
<Main />