reactjs 如何在Next Js 13应用路由器中添加Favicon图标?[关闭]

ghhaqwfi  于 2023-05-17  发布在  React
关注(0)|答案(1)|浏览(107)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
5天前关闭。
此帖子4天前编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
Improve this question
我是Next.js的新手,我试图在我的网页上添加一个favicon,但我还没有找到任何最新的解决方案与App Router Next.js版本13.4相同。
我尝试在layout.tsx中添加一个Head:

但对我没用

x4shl7ld

x4shl7ld1#

你可以这样添加:

export const metadata = {
  icons: {
    icon: '/icon.png',
  },
};

相关问题