query
New to Nextjs/T3, how do you change the favicon/ tab logo and title of webpage from a npm create t3-app@latest?
1 Reply
favico.ico
is just a file in the public
folder, you can replace it with whatever you want
the title cant be set within any page component within the <title>
html element with the nextjs <Head>
component
you can see where this is set at the top of the return in /src/pages/index.tsx