Skip to content

Commit

Permalink
Add crossorigin use-credentials on manifest
Browse files Browse the repository at this point in the history
- Fixes #82
  • Loading branch information
huntharo committed Jan 5, 2023
1 parent 9bdfd1d commit e2660b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/app/src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ export default class MyDocument extends Document {
sizes="16x16"
href={`${isProd ? apiPrefix : basePath}/favicon-16x16.png`}
/>
<link rel="manifest" href={`${apiPrefix}/api/webmanifest`} />
<link
rel="manifest"
href={`${apiPrefix}/api/webmanifest`}
crossOrigin="use-credentials"
/>
</Head>
<body>
<Main />
Expand Down

0 comments on commit e2660b4

Please sign in to comment.