favicon
文件到public
目录下pages/_app.js
import Head from 'next/head'
function MyApp({Component, pageProps}) {
return (
<>
{/* the favicon */}
<Head>
<link rel="shortcut icon" href="/favicon.ico" />
</Head>
{/* the favicon */}
<Component {...pageProps} />
</>
)
}
export default MyApp