所以我打算用NextJS创建一个SSR应用程序。我想知道是否有一种方法可以在前端使用组件,就像使用React-helmet一样。
答案 0 :(得分:0)
是的,根据Next docs。这是一个示例页面摘录also from the docs:
import Head from 'next/head'
export default () => (
<div>
<Head>
<title>This page has a title </title>
<meta charSet='utf-8' />
<meta name='viewport' content='initial-scale=1.0, width=device-width' />
</Head>
<h1>This page has a title </h1>
</div>
)