-
-
Notifications
You must be signed in to change notification settings - Fork 186
fix: explicit seo meta tags for social cards #845
New issue
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
📝 WalkthroughWalkthroughAdds Open Graph and Twitter metadata mappings to the home page SEO setup: 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Important Action Needed: IP Allowlist UpdateIf your organization protects your Git platform with IP whitelisting, please add the new CodeRabbit IP address to your allowlist:
Failure to add the new IP will result in interrupted reviews. Comment |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
| ogTitle: () => $t('seo.home.title'), | ||
| twitterTitle: () => $t('seo.home.title'), | ||
| twitterCard: 'summary_large_image', | ||
| description: () => $t('seo.home.description'), | ||
| ogDescription: () => $t('seo.home.description'), | ||
| twitterDescription: () => $t('seo.home.description'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should probably be done on all pages, but we can merge this to test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's what I was thinking too, and I'll continue to improve it. Since summary_large_image has remained unchanged, should we consider putting it into the nuxt.config.ts app configuration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.

fixes: #832
https://cards-dev.x.com/validator prompt
WARN: The image URL https://npmx.dev/__og-image__/static/og.png specified by the 'twitter:image:src' metatag may be restricted by the site's robots.txt file, which will prevent Twitter from fetching it.
I will add
Allow: /__og-image__/*to the robots.txt file. This method didn't fix the problem either; I need help.