Answers for "How to change favicon in nextjs."

0

How to change favicon in 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>
  )
}
Posted by: Guest on May-03-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language