📚 Reference


📜 Chapter


CNA (Create Next App)

Next.js & Webpack & Jest & React testing library

yarn

Next.js & Webpack


1. Next.js - 설치

1) Create next app (CNA)

CNA (Create Next App)

# yarn
yarn create next-app

# 프로젝트명을 다음 줄에서 입력함
yarn create next-app --typescript

yarn create next-app {프로젝트명} --typescript
# npx
npx create-next-app

# 프로젝트명을 다음 줄에서 입력함
npx create-next-app --typescript

npx create-next-app {프로젝트명} --typescript