-
Notifications
You must be signed in to change notification settings - Fork 1
[25.12.17 / TASK-256] Feature - Badge 추가 #48
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
Open
six-standard
wants to merge
11
commits into
main
Choose a base branch
from
feat/badge
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+633
−13
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d05f1ca
add: 필요한 라이브러리 추가
six-standard b16643b
add: 필요한 파일 추가
six-standard 64267c6
add: 아이콘 추가
six-standard 31ea9d3
fix: style prop을 넘겼음에도 스타일이 적용되지 않던 이슈 해결
six-standard d9b79d4
fix: 변경된 아이콘 크기 맞춤
six-standard 8b6cdad
feat: 뱃지 구현
six-standard 9435722
refactor: 개발환경 이미지 remotePatterns 추가
six-standard c5d88aa
refactor: 기본값 개선
six-standard 9edc243
refactor: 복사 버튼 재활용
six-standard deace7e
feat: 뱃지 생성기 제작
six-standard f7e8c42
fix: 잘못된 타입 수정
six-standard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,7 @@ | |
| "@sentry/nextjs": "^8.47.0", | ||
| "@tailwindcss/typography": "^0.5.16", | ||
| "@tanstack/react-query": "^5.69.0", | ||
| "@vercel/og": "^0.8.6", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vercel/og 패키지 버전 확인 필요 @vercel/og의 최신 버전은 0.8.5입니다. package.json의 🤖 Prompt for AI Agents |
||
| "chart.js": "^4.4.7", | ||
| "chartjs-plugin-datalabels": "^2.2.0", | ||
| "holy-loader": "^2.3.13", | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
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.
프로덕션 환경에서 localhost 패턴이 활성화되지 않도록 확인하세요.
HTTP localhost 패턴은 개발 환경에서만 필요합니다. 프로덕션 배포 시 보안 취약점이 될 수 있으므로, 환경 변수를 사용하여 개발 환경에서만 활성화되도록 제한하는 것을 권장합니다.
다음과 같이 수정하는 것을 고려하세요:
images: { remotePatterns: [ { protocol: 'https', hostname: 'velog.velcdn.com', pathname: '**' }, { protocol: 'https', hostname: 'images.velog.io', pathname: '**' }, - { protocol: 'http', hostname: 'localhost', pathname: '**' }, + ...(process.env.NODE_ENV === 'development' + ? [{ protocol: 'http', hostname: 'localhost', pathname: '**' }] + : []), ], },📝 Committable suggestion
🤖 Prompt for AI Agents