我试图在 Next JS 13.4 中添加元标记,但我不能。我已阅读文档并用谷歌搜索,但找不到解决方案。我正在尝试以 Next JS 方式添加此 HTML 元标记。
<meta name="apple-mobile-web-app-title" content="AppTitle">
我在 Next JS 元数据中尝试的是
export const metadata = {
title: 'MessageMoment - The real meaning to personal!',
description: 'MessageMoment - The real meaning to personal!',
creator: 'Chandan Sayed',
short_name: 'MessageMoment',
applicationName: 'MessageMoment',
siteName: 'MessageMoment',
appleMobileWebAppTitle: 'MessageMoment'
}
但这不起作用,请帮助我。提前致谢。