在我的NextJS应用程序中,我有一个not-found.tsx
文件,在我的app
目录的根目录中有一些简单的元数据:
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Page not found",
};
export default function NotFound() {
return (
<>
<h1 className="mb-4 text-xl">Page not found</h1>
<Link href="/">
<button className="rounded bg-blue-600 px-3 py-1 text-sm text-gray-50 dark:bg-blue-700">
Back to home
</button>
</Link>
</>
);
}
但是当我输入一个错误的URL时,我看到的URL本身就是页面的标题,而不是Page not found
。我检查了head
元素,其中没有title
元素。
如何从找不到的页面导出元数据对象?
任何帮助将不胜感激!
1条答案
按热度按时间axzmvihb1#
截至2023年6月25日尚未支持