Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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>
  )
}
Source by reactgo.com #
 
PREVIOUS NEXT
Tagged: #How #change #favicon
ADD COMMENT
Topic
Name
9+9 =