docs: fix og:image URL (metadataBase -> graph-sitter.dev)#172
Open
jayhack wants to merge 1 commit into
Open
Conversation
The OG image route ships fine, but metadataBase was https://graph-sitter.com (which isn't a live domain), so og:image/twitter:image resolved to a dead URL and social scrapers couldn't fetch the card. Point metadataBase and the OpenGraph url at the production domain graph-sitter.dev so the absolute image URLs work. Co-authored-by: Cursor <cursoragent@cursor.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
The OG image (#163) is merged and deployed —
https://graph-sitter.dev/opengraph-imagerenders fine. The reason it wasn't "popping up" in social previews is thatmetadataBasewas set tohttps://graph-sitter.com, which is not a live domain (the project servesgraph-sitter.dev/graph-sitter.vercel.app). So Next emittedog:image/twitter:imageas absolute URLs athttps://graph-sitter.com/opengraph-image, which scrapers can't fetch.This points
metadataBaseand the OpenGraphurlat the production domaingraph-sitter.dev.Before:
og:image content="https://graph-sitter.com/opengraph-image?…"After:
og:image content="https://graph-sitter.dev/opengraph-image?…"Test plan
npm run buildinsite/passes; built home HTML now emitsog:image/twitter:imageathttps://graph-sitter.dev/opengraph-image.Made with Cursor