getInitialProps

쌍제이(JJVoiture)·2022년 3월 28일
0
post-custom-banner

https://nextjs.org/docs/api-reference/data-fetching/get-initial-props

next.js 공식 문서를 보면 getInitialProps를 사용하는 것을 권장하지 않는다.
getServerSideProps나 getStaticProps는 SG(Static Generation)과 SSR(Server Side Rendering)을 지원한다.

Static Generation vs Server Side Rendering

Static Generation: HTML을 빌드 타임에 각 페이지별로 생성하고 해당 페이지로 요청이 올 경우 이미 생성된 HTML 문서를 반환한다.

Server Side Rendering: 요청이 올 때마다 해당하는 HTML 문서를 그 때 그 때 생성하여 반환한다.

이 때 _app.jsx의 App은 getStaticProps나 getServerSideProps를 지원하지 않는다.

profile
안녕하세요. 중구난방 개발자 쌍제이입니다.
post-custom-banner

0개의 댓글