Favicon was suddenly not working anymore but the way to bind it in that has not worked before does work

This commit is contained in:
sageTheDM 2024-09-27 07:47:24 +02:00
parent e731da6c7b
commit 4318b1a9b7

View file

@ -12,7 +12,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<title>{metadata.title}</title>
<meta name="description" content={metadata.description} />
{/* Tried adding the favicon here */}
<link rel="icon" href="./public/favicon.ico" type="image/x-icon" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
</head>
<body>
<main>{children}</main>