next.js 개발환경 구축

REM next.js+typescript+eslint+tailwind 개발환경 구축
SET APP_NAME=my-app
npx --yes create-next-app@latest my-app --typescript --tailwind --eslint --app --src-dir --import-alias "@/*" --no-interactive

REM react+typescript 개발환경 구축
npx --yes create-react-app@latest my-app --template typescript

REM 추가 애플리케이션 설치 예
cd my-app
npm install axios zustand

REM 업데이트
cd my-app
npm update

REM 설치된 라이브러리 확인
cd my-app
npm fund

개발 서버 실행
cd my-app
npm run dev

빌드 (배포용)
cd my-app
npm run build

프로덕션 실행
cd my-app
npm run start
위로 스크롤