자바스크립트/Next js

[next js] metadata 레이아웃사용

KIMJAVAN 2024. 12. 20. 14:16
728x90

layout.tsx

export const metadata :Metadata= {
  title : {
    template : "%s | this is next hihi :)"
  },
  description : '하이'
}

 

 

main page.tst

export const metadata = {
  title: ' main',
}

 

 

이렇게 작성하면 main | this is next hihi :) 로 표시된다