Skip to content

Commit

Permalink
chore: use maskable images for social preview
Browse files Browse the repository at this point in the history
  • Loading branch information
xtools-at committed Oct 20, 2023
1 parent 5f95710 commit 5616cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function App(props: MyAppProps) {
<meta property="og:url" content={`${host}${basePath}`} />
<meta
property="og:image"
content={`${host}${basePath}/icons/banner.png`}
content={`${host}${basePath}/icons/512-maskable.png`}
/>
<meta property="og:description" content={description} />
<meta property="og:type" content="website" />
Expand All @@ -68,7 +68,7 @@ export default function App(props: MyAppProps) {
<meta name="twitter:description" content={description} />
<meta
name="twitter:image:src"
content={`${host}${basePath}/icons/512.png`}
content={`${host}${basePath}/icons/512-maskable.png`}
/>
<meta name="twitter:creator" content={creatorTwitter} />
</Head>
Expand Down

0 comments on commit 5616cd9

Please sign in to comment.