Version 14

Upgrading from 13 to 14

Next.js 버전 14로 업데이트하려면, 선호하는 패키지 매니저를 사용하여 다음 명령어를 실행하세요:

Terminal
npm i next@latest react@latest react-dom@latest eslint-config-next@latest
Terminal
yarn add next@latest react@latest react-dom@latest eslint-config-next@latest
Terminal
pnpm up next react react-dom eslint-config-next --latest
Terminal
bun add next@latest react@latest react-dom@latest eslint-config-next@latest

알아두면 좋은 사항: TypeScript를 사용하는 경우 @types/react@types/react-dom도 최신 버전으로 업그레이드하세요.

v14 Summary

  • 최소 Node.js 버전이 16.14에서 18.17로 상향되었습니다. 16.x는 지원 종료되었습니다.
  • next export 명령어는 output: 'export' 설정으로 대체되었습니다. 자세한 내용은 문서 (opens in a new tab)를 참조하세요.
  • next/server에서 ImageResponse의 import가 next/og로 변경되었습니다. 안전하고 자동으로 import를 이름 변경할 수 있는 codemod를 사용할 수 있습니다.
  • @next/font 패키지가 내장 next/font로 완전히 대체되었습니다. 안전하고 자동으로 import를 이름 변경할 수 있는 codemod를 사용할 수 있습니다.
  • next-swc의 WASM 타겟이 제거되었습니다.