Create a Next.js App
생성
npx create-next-app
or
npx create-next-app@latest --ts
// 현재 폴더에 생성
npx create-next-app@latest --ts .
실행
npm run dev
새로운 페이지 생성
- pages 폴더에 새로 …
npx create-next-app
or
npx create-next-app@latest --ts
// 현재 폴더에 생성
npx create-next-app@latest --ts .
npm run dev
npm install remark remark-html
npm install date-fns
import { parseISO, format } from "date-fns …
export async function getStaticProps(context) {
return {
props: {}, // props로 page component에 전달될 것입니다.
}
}