npx create-next-app@latest
# or
yarn create next-app
# or
pnpm create next-app
타입스크립트 프로젝트로 시작하고 싶을때 --typescript
플래그를 붙입니다:
npx create-next-app@latest --typescript
# or
yarn create next-app --typescript
# or
pnpm create next-app --typescript
설치가 완료된 이후
npm run dev
or yarn dev
or pnpm dev
를 실행하면 개발 서버가 시작됩니다pages/index.js
수정하고 브라우저에 결과가 업데이트 되는지 확인