Skip to content

Commit

Permalink
fix: full url to the meta og image
Browse files Browse the repository at this point in the history
  • Loading branch information
matejminar committed Oct 17, 2019
1 parent 8087d47 commit c548168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/seo.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function SEO({ description, lang, meta, title }) {
},
{
property: `og:image`,
content: site.siteMetadata.image,
content: site.siteMetadata.url + site.siteMetadata.image,
},
{
property: `og:url`,
Expand All @@ -79,7 +79,7 @@ function SEO({ description, lang, meta, title }) {
},
{
name: `twitter:image`,
content: site.siteMetadata.image,
content: site.siteMetadata.url + site.siteMetadata.image,
},
].concat(meta)}
/>
Expand Down

0 comments on commit c548168

Please sign in to comment.