Skip to content

Commit

Permalink
fix: try fixing safe manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
tomquirk committed Feb 17, 2024
1 parent 9677549 commit 1f36d71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const ContentSecurityPolicy = `
font-src 'self' data:;
img-src 'self' ${IMG_SRC.join(' ')} data:;
connect-src 'self' ${CONNECT_SRC.join(' ')};
manifest-src 'self' https://*.safe.global;
manifest-src 'self';
frame-src ${FRAME_SRC.join(' ')};
media-src 'self' https://jbx.mypinata.cloud ${INFURA_IPFS_URLS.join(' ')};
frame-ancestors ${FRAME_ANCESTORS.join(' ')};
Expand Down
6 changes: 5 additions & 1 deletion src/components/common/Head/Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ export const Head: React.FC<SEOProps> = props => {
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/manifest.json" />
<link
rel="manifest"
href="/manifest.json"
crossOrigin="use-credentials"
/>
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5777EB" />
{FONT_PATHS.map(path => (
<link
Expand Down

0 comments on commit 1f36d71

Please sign in to comment.