Front-end
Next.js 프로젝트 생성
naeunchan
2022. 2. 28. 16:13
728x90
반응형
npx create-next-app
yarn create-next-app
# using typescript
npx create-next-app --typescript
yarn create-next-app --typescript
next.js 앱 생성을 위한 커맨드.
현재 폴더에 next.js 프로젝트를 만들고 싶다면
npx create-next-app .
yarn create-next-app .
# using typescript
npx create-next-app --typescript .
yarn create-next-app --typescript .
728x90
반응형