NextJS logo Meta data

h7wcgrx3  于 12个月前  发布在  Go
关注(0)|答案(1)|浏览(91)

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

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

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

hwazgwia

hwazgwia1#

import type { Metadata } from "next";

字符串
它有这样一个领域,

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


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

相关问题