Como mudar o Favicon nos NextJs.
import Head from 'next/head'
export default function Home() {
return (
<div className="container">
<Head>
<title>Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<p>other code goes here..</p>
</div>
)
}
Mappy Show