Next.js Discord

Discord Forum

favicon

Answered
North Pacific hake posted this in #help-forum
Open in Discord
North Pacific hakeOP
im using an image called matt-square-icon.png and its located in the /app directory. How can I set it to be the firefox tab icon? thanks
Answered by Ray
move the image to public folder and do this in layout.tsx
export const metadata: Metadata = {
  title: "Create Next App",
  description: "Generated by create next app",
  icons: {
    icon: "/matt-square-icon.png",
  },
};
View full answer

4 Replies

@North Pacific hake im using an image called matt-square-icon.png and its located in the /app directory. How can I set it to be the firefox tab icon? thanks
move the image to public folder and do this in layout.tsx
export const metadata: Metadata = {
  title: "Create Next App",
  description: "Generated by create next app",
  icons: {
    icon: "/matt-square-icon.png",
  },
};
Answer
North Pacific hakeOP
public folder inside the /app directory? @Ray
@North Pacific hake public folder inside the /app directory? <@743561772069421169>
no the public folder should be same level as app
North Pacific hakeOP
@Ray thanks it worked, Ray.