728x90
반응형

참조 

https://nextjs.org/docs/getting-started

 

Getting Started | Next.js

Get started with Next.js in the official documentation, and learn more about all our features!

nextjs.org

 

 

시스템 요구 사항

 - Node.js 12.0 이상

 - MacOS, Windows 및 Linux 지원

 

 

먼저 다음 명령어로 Next.js 앱을 설치한다.

$ npx create-next-app@latest

 

만약 TypeScript로 프로젝트를 실행하려면 다음 명령어를 실행한다.

$ npx create-next-app@latest --typescript

 

 

  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  • dev - 개발 모드에서 Next.js를 시작하는 실행
  • build - 'next build' 프로덕션을 사용
  • start - 'next start' 프로덕션 사용
  • lint - 'next lint' Next.js의 내장 ESLint 구성을 설정
728x90
반응형

+ Recent posts