Muscardinus
Head 본문
728x90
Next.js를 사용하지 않더라도, 우리는 meta 태그를 통해서 SEO를 최적화한다.
Next.js는 이를 Head를 통해서 할 수 있다.
예시
import Head from 'next/head'
function IndexPage() {
return (
<div>
<Head>
<title>My page title</title>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<p>Hello world!</p>
</div>
)
}
export default IndexPage
728x90
'FrontEnd > NextJS' 카테고리의 다른 글
getServerSideProps (0) | 2021.09.27 |
---|---|
getStaticPaths (0) | 2021.09.27 |
getStaticProps (0) | 2021.09.27 |
Comments