NextJS 徽标元数据

问题描述 投票:0回答:1

在NextJS中,在layout.ts中,有这样的元数据:

export const metadata: Metadata = {
  title: 'UpWhere Global Tapestry',
  description: 'Crafting tales from each nook and cranny.',
}

如何在元数据中包含徽标图像?

reactjs next.js seo
1个回答
0
投票
import type { Metadata } from "next";

有这个字段

 icons?: null | IconURL | Array<Icon> | Icons;

这是您传递图像链接的唯一字段。

© www.soinside.com 2019 - 2024. All rights reserved.