head 설정
·
Nextjs
html은 head 태그안에 title과 meta 태그 등을 설정함으로써 페이지의 정보를 제공한다.next.js에서는 next/head 컴포넌트를 이용해 설정 할 수 있다. import Head from "next/head"; export default ({ children, title = "This is the default title" }) => ( {title}