250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
Next.js 프로젝트 생성 본문
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
반응형