I am using Vercel to host my Next.JS website and after trying different strategies for months, I still cannot get my favicon to appear on Google Search or Bing search, only Duck Duck go. I can confirm I see the favicon on my Google Search Console crawled page:
I have the favicon.ico in my app direcotry (using app router). I also have this in my app/layout.tsx file:
export const metadata: Metadata = { metadataBase: new URL(getURL()), title: title, description: description, openGraph: { title: title, description: description }, icons: { icon: "/favicon.ico", apple: "/apple-icon.png" // iOS “apple-touch-icon” } }