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

pull/1380/head
Alex Cortelyou 4 years ago committed by GitHub
parent 8ee7693a1f
commit 82ca2f5934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 />

Loading…
Cancel
Save