-
Notifications
You must be signed in to change notification settings - Fork 1
[FEAT] favicon, title tag 추가 #88
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
Walkthrough이 변경 사항은 Changes
Assessment against linked issues
📜 Recent review detailsConfiguration used: .coderabbit.yaml ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
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.
Actionable comments posted: 1
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
⛔ Files ignored due to path filters (1)
public/favicon.pngis excluded by!**/*.png
📒 Files selected for processing (1)
index.html(1 hunks)
🔇 Additional comments (2)
index.html (2)
7-7: 타이틀 변경이 적절합니다
브랜드 아이덴티티를 잘 반영한 타이틀로 변경되었습니다.
8-13:
Open Graph 메타 태그 구현 개선이 필요합니다
다음과 같은 문제점들이 발견되었습니다:
og:image의 파일명에 오타가 있습니다 ('fabicon' → 'favicon')og:image경로에 'public' 디렉토리 참조가 포함되어 있습니다og:url의 도메인 주소 확인이 필요합니다
다음과 같이 수정해주세요:
<meta property="og:title" content="Findy" />
<meta property="og:description" content="순간을 찾아 연결하다." />
- <meta property="og:image" content="/public/fabicon.png" />
+ <meta property="og:image" content="/favicon.png" />
- <meta property="og:url" content="https://findynow.com" />
+ <meta property="og:url" content="실제 프로덕션 URL을 입력해주세요" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ko_KR" />프로덕션 URL을 확인하기 위해 다음 스크립트를 실행합니다:
index.html
Outdated
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
| <link rel="icon" type="image/svg+xml" href="/public/favicon.png" /> |
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.
파비콘 경로 수정이 필요합니다
/public/favicon.png 경로에서 'public' 디렉토리 참조를 제거하는 것이 좋습니다. 빌드 시스템에서 'public' 폴더의 파일들은 루트 경로에 배포되므로, 실제 서비스 환경에서 404 오류가 발생할 수 있습니다.
다음과 같이 수정해주세요:
- <link rel="icon" type="image/svg+xml" href="/public/favicon.png" />
+ <link rel="icon" type="image/svg+xml" href="/favicon.png" />📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <link rel="icon" type="image/svg+xml" href="/public/favicon.png" /> | |
| <link rel="icon" type="image/svg+xml" href="/favicon.png" /> |
관련 이슈
close #87
📑 작업 내용
-
og태그도 적용했습니다. 추후og:image해당 이미지는 규격에 맞게 다시 수정해야 할 것 같습니다.💬 리뷰 중점 사항/기타 참고 사항
Summary by CodeRabbit
새로운 기능
버그 수정