[FEAT] OG 이미지 메타데이터 설정#249
Conversation
- public/og.png를 openGraph.images와 twitter.images에 연결했습니다 - twitter 카드 타입을 summary에서 summary_large_image로 변경했습니다
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Warning Review limit reached
Next review available in: 48 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Timo Performance ReportBundle Size — timo-web
Lighthouse — timo-web
Image Optimization — timo-web
측정 커밋: |
ISSUE 🔗
close #248
What is this PR? 🔍
카카오톡/슬랙/트위터 등에 링크를 공유했을 때 OG 이미지가 노출되도록 메타데이터를 설정했습니다.
배경
public/og.png는 이미 저장소에 추가되어 있었지만generateMetadata의openGraph/twitter블록에는images필드가 없었습니다.metadataBase(https://timo.kr)가 이미 설정되어 있어, 절대 URL 없이/og.png상대 경로만 추가하면 됩니다.OG / Twitter 메타데이터
openGraph.images와twitter.images에/og.png를 연결하고, twitter 카드 타입을summary에서summary_large_image로 바꿨습니다.summary는 정사각형 썸네일용 카드라 큰 배너 이미지에는summary_large_image가 맞는 카드 타입입니다.openGraph.images는{ url, width, height, alt }객체 배열로, 실제og.png파일의 픽셀 크기(4800×2520, 1.91:1 비율)를 그대로 명시했습니다.alt는 기존 title 값을 재사용했습니다.To Reviewers
이미지 크기(4800×2520, 437KB)가 일반적인 OG 권장 사이즈(1200×630)보다 4배 큽니다. 화면에는 항상 축소되어 노출되므로 기능상 문제는 없지만, 로딩 크기를 줄이고 싶으면 리사이즈된 원본으로 교체하는 것도 고려해볼 수 있습니다.
Screenshot 📷
Test Checklist ✔
pnpm check-types통과pnpm lint통과