fix: use absolute URLs for OG/Twitter image meta on /cat page#105
Merged
thewilloftheshadow merged 1 commit intomainfrom Mar 12, 2026
Merged
fix: use absolute URLs for OG/Twitter image meta on /cat page#105thewilloftheshadow merged 1 commit intomainfrom
thewilloftheshadow merged 1 commit intomainfrom
Conversation
Social media crawlers (Twitter, Discord, Telegram, etc.) require fully qualified URLs to fetch preview images. The /cat page was using relative paths (/og-image.png) which crawlers cannot resolve. Changes: - Use absolute https://openclaw.ai/og-image.png for og:image and twitter:image - Add og:image:width and og:image:height for proper preview sizing - Add og:url for canonical URL resolution
|
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.
Problem
The
/catpage uses relative paths (/og-image.png) forog:imageandtwitter:imagemeta tags. Social media crawlers (Twitter, Discord, Telegram, Slack, etc.) require fully qualified URLs to fetch preview images, so the OG image never renders in link previews.The main layout (
Layout.astro) already uses absolute URLs correctly — this was just missed on the standalone/catpage.Changes
og:imageandtwitter:image:/og-image.png→https://openclaw.ai/og-image.pngog:image:widthandog:image:height(1200×630) for proper preview sizingog:url(https://openclaw.ai/cat) for canonical URL resolutionVerification
All other pages use
Layout.astrowhich already has absolute OG URLs —/catwas the only page affected.--
