Add social image - #442
Merged
Merged
Conversation
Sets og:image and twitter:image site-wide. Card uses the same gradient, turtle and copy as the homepage hero. Fix #419
Contributor
|
I like it 👍 Unable to test platform previews with online tools because Or if you want to get fancy, extend netlify.toml with and const isPreview = process.env.IS_NETLIFY_PREVIEW === 'true';
// Use Netlify preview domain for PRs, else production domain
const siteUrl = isPreview
? process.env.DEPLOY_PRIME_URL
: 'https://pester.dev';
const config = {
...
url: siteUrl,
noIndex: isPreview, |
Member
Author
|
@fflaten merged! |
Contributor
|
Looks good! Thanks.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Card reuses the homepage hero: same gradient, same turtle, same copy. 1200x630.
themeConfig.imagesetsog:imageandtwitter:imageon every page, andtwitter:cardis alreadysummary_large_imageby default, so nothing else is needed. Verified inbuild/index.htmland in a docs page.I kept the source at
static/img/social-card.svgso the text can be changed later without redrawing it. It is not used by the site, drop it if you think it is clutter.Jpg because png of the same card is 600 kB and this one is 84 kB.
Fix #419
🤖