We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When linking to social images, (like in the og.image or twitter.image), their should be a way to easily add the website's domain into the url.
og.image
twitter.image
If the image item begins with a /, then auto link append the seo.baseUrl value to it?
image
/
seo.baseUrl
Going from commonly hard coded website address:
twitter: { card: 'summary_large_image', // url: '/', // title: '', image: 'https://frostbutter.com/media/domains.jpg', },
To no hard coded address:
twitter: { card: 'summary_large_image', // url: '/', // title: '', image: '/media/domains.jpg', },
All giving the same result: an absolute url to the desired image
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When linking to social images, (like in the
og.image
ortwitter.image
), their should be a way to easily add the website's domain into the url.If the
image
item begins with a/
, then auto link append theseo.baseUrl
value to it?Going from commonly hard coded website address:
To no hard coded address:
All giving the same result: an absolute url to the desired image
The text was updated successfully, but these errors were encountered: