fix. 기본 버튼 수정

This commit is contained in:
clkim
2025-10-30 20:20:38 +09:00
parent 6763d353c3
commit d07ec96b34
3 changed files with 12 additions and 26 deletions

View File

@@ -37,31 +37,16 @@ const setupAllMetaData = (data: GameDataValue) => {
{
rel: 'icon',
type: 'image/x-icon',
sizes: '16x16',
href: faviconPath['16_16'],
},
{
rel: 'icon',
type: 'image/x-icon',
sizes: '32x32',
href: faviconPath['32_32'],
},
{
rel: 'icon',
type: 'image/png',
sizes: '72x72',
href: faviconPath['72_72'],
href: getResolvedHost(faviconPath[0]),
},
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: faviconPath['180_180'],
href: getResolvedHost(faviconPath[1]),
},
{
rel: 'icon',
type: 'image/png',
sizes: '192x192',
href: faviconPath['192_192'],
href: getResolvedHost(faviconPath[2]),
},
]