Skip to content

Commit

Permalink
switch opengraph image from relative url to absolute url
Browse files Browse the repository at this point in the history
  • Loading branch information
MarconLP committed May 28, 2023
1 parent 080e854 commit 1cdc169
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/nextjs/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ const MyApp: AppType<{ session: Session | null }> = ({
<meta property="og:site_name" content="Loggl" />
<meta property="og:url" content="https://loggl.net" />

<meta name="twitter:image" content="/home.png" />
<meta name="twitter:image" content="https://loggl.net/home.png" />
<meta name="twitter:image:type" content="image/png" />
<meta name="twitter:image:width" content="1200" />
<meta name="twitter:image:height" content="630" />

<meta property="og:image" content="/home.png" />
<meta property="og:image" content="https://loggl.net/home.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
Expand Down

0 comments on commit 1cdc169

Please sign in to comment.