Other articles


  1. [Next.js] Dynamic Routes

    Dynamic Routes


    기본개념

    • 각 파일에 대한 동적경로를 지원

    사용 라이브러리

    Render Markdown

    • 설치
    npm install remark remark-html
    

    Formatting the Date

    • 설치
    npm install date-fns
    
    • /components/date.js
    import { parseISO, format } from "date-fns …
    read more
  2. [Next.js] getStaticPaths

    getStaticPaths


    기본개념

    • dynamic route를 이용한다면, build 시에 HTML을 생성하기 위해 path list를 정의해야할 필요가 있음
    • 이런 경우에 getStaticPaths를 사용
    • Next.js는 getStaticPaths에 정의된 모든 …
    read more
  3. [Next.js] getStaticProps

    getStaticProps


    기본개념

    • async 함수인 getStaticProps 함수를 export하면 Next.js는 getStaticProps에 의해 return된 props를 이용해 build 시에 pre-rendering 함
    export async function getStaticProps(context) {
      return {
        props: {}, // props로 page component에 전달될 것입니다.
      }
    }
    

    사용처

    • 사 …
    read more

links

social