fix: 친구 토너먼트 결과 상품 이미지를 이미지 프록시 경유로 로드 - #556
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Discord 스레드 연동용 메타데이터입니다. discord-pr-bot 워크플로가 자동 생성하며, 수정·삭제하면 PR 과 Discord 알림 연동이 끊깁니다. |
|
Warning Review limit reached
Next review available in: 38 minutes Limit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?Wait for the limit to reset, then comment An organization admin can change what happens after included review limits in Billing. How do review limits work?CodeRabbit enforces per-developer PR review limits within each organization. For paid Pro and Pro+ reviews, CodeRabbit uses a developer's included PR review attempts over the past 7 days to set the current hourly allowance. At typical activity levels, the full plan allowance applies. Higher sustained activity can lower the allowance until earlier attempts leave the 7-day window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
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 |
작업 내용
친구 토너먼트 결과 화면(
/tournament/[id]/result/group)에서 상품 이미지가 403 으로 깨지던 문제를 수정했습니다.next/image의unoptimized때문에 Next 의/_next/image프록시를 건너뛰고 원본 URL 을 그대로 로드하고 있었습니다. 브라우저가 쇼핑몰 이미지 서버에 직접 요청하면서Referer가 붙어 핫링크 차단에 걸렸습니다.unoptimized를 제거해 영수증 화면과 동일하게 이미지 프록시를 경유하도록 했습니다. Next 서버가 대신 받아오므로 Referer 가 없어 통과합니다.연관 이슈
closes #555