SSG
-
Next.js - SSG, getStaticPropsReact.js & Next.js 2022. 9. 18. 20:39
Data Fetching: getStaticProps | Next.js Data Fetching: getStaticProps | Next.js Fetch data and generate static pages with `getStaticProps`. Learn more about this API for data fetching in Next.js. nextjs.org 정의 getStaticProps 메서드를 export 한다면, Next.js 는 getStaticProps 에 의해 반환되는 props를 빌드 타입에 프리-렌더할 것입니다. export async function getStaticProps(context) { return { props: {}, // will be passed to the p..