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:
@@ -49,6 +49,8 @@ export default defineNuxtConfig({
|
||||
link: [
|
||||
// 파비콘 — 헤더 로고(ITAB) 기반
|
||||
{ rel: 'icon', href: '/favicon.ico', sizes: 'any' },
|
||||
// SVG 파비콘 — 최신 브라우저 우선 적용(고해상도)
|
||||
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
||||
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' },
|
||||
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
|
||||
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
|
||||
|
||||
Reference in New Issue
Block a user