diff --git a/src/components/Layout/Seo.tsx b/src/components/Layout/Seo.tsx index 1cf0894e..f3a1eb55 100644 --- a/src/components/Layout/Seo.tsx +++ b/src/components/Layout/Seo.tsx @@ -23,7 +23,7 @@ export default function Seo({ link = [], archived = false, }: Props) { - const { site, favicon } = useStaticQuery(graphql` + const { site, favicon, favicon48 } = useStaticQuery(graphql` query { site { siteMetadata { @@ -35,6 +35,9 @@ export default function Seo({ favicon: file(relativePath: { eq: "favicon.ico" }) { publicURL } + favicon48: file(relativePath: { eq: "favicon-48x48.ico" }) { + publicURL + } } `); @@ -123,11 +126,11 @@ export default function Seo({ ...meta, ]} link={[ - // { - // rel: "icon", - // sizes: "48x48", - // href: favicon48.publicURL, - // }, + { + rel: "icon", + sizes: "48x48", + href: favicon48.publicURL, + }, { rel: "icon", sizes: "256x256",