fix: 구글 검색결과 파비콘 잘림 수정

여백 추가된 favicon.svg 기반으로 PNG/ICO 파비콘 재생성.
로고를 캔버스 중앙 영역에 배치해 구글 원형 마스크에도 안 잘리도록 함.
- sharp/png-to-ico 기반 생성 스크립트 추가 (npm run favicon)
- SVG 파비콘 링크 추가 (최신 브라우저 우선)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-10 19:49:53 +09:00
parent 5d0a6d5717
commit e1e18b00f7
9 changed files with 706 additions and 38 deletions
+4 -1
View File
@@ -11,7 +11,8 @@
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint . --fix",
"format": "oxfmt ."
"format": "oxfmt .",
"favicon": "node scripts/gen-favicon.mjs"
},
"dependencies": {
"axios": "^1.14.0",
@@ -26,6 +27,8 @@
"@types/node": "^24.12.0",
"eslint": "^9.18.0",
"oxfmt": "^0.42.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"typescript": "~6.0.0",
"vue-tsc": "^3.2.6"
},