0.14.6
_A clear and concise description of what the bug is._
The image path in SEO tags is double-prefixed with the site URL. For example:
<meta property="og:image" content="https://useplot.comhttps://useplot.com/static/bd327be4b86de1bc20c6ab3203472998/0ff54/hustle.jpg" data-react-helmet="true">
Steps to reproduce the behavior:
hero frontmatter.gatsby buildmeta tags like above.The siteUrl is only added once.
I verified removing ${site.siteUrl} from fullURL in SEO.tsx fixes the issue for me. If this is the proper fix for all situations, I can put up a PR.
go for it <3
I got the fix up in: https://github.com/narative/gatsby-theme-novela/pull/353, please review 馃憤
Thanks for getting to this first, @dsteenman!
Most helpful comment
I verified removing
${site.siteUrl}fromfullURLinSEO.tsxfixes the issue for me. If this is the proper fix for all situations, I can put up a PR.