文档头部无标题
阻止在
next/document
的Head
组件中使用<title>
。
为何发生此错误
在从 next/document
导入的 Head
组件中定义了一个 <title>
元素,该组件仅应用于所有页面通用的 <head>
代码。标题标签应在页面级别使用 next/head
定义。
可能的修复方法
在页面或组件中,导入并使用 next/head
来定义页面标题
pages/index.js
import Head from 'next/head'
export function Home() {
return (
<div>
<Head>
<title>My page title</title>
</Head>
</div>
)
}
实用链接
这有帮助吗?