docs/01-app/01-getting-started/18-upgrading.mdx
To update to the latest version of Next.js, you can use the upgrade command:
pnpm next upgrade
npx next upgrade
yarn next upgrade
bunx next upgrade
Versions before Next.js 16.1.0 do not support the upgrade command and need to use a separate package instead:
npx @next/codemod@canary upgrade latest
If you prefer to upgrade manually, install the latest Next.js and React versions:
pnpm i next@latest react@latest react-dom@latest eslint-config-next@latest
npm i next@latest react@latest react-dom@latest eslint-config-next@latest
yarn add next@latest react@latest react-dom@latest eslint-config-next@latest
bun add next@latest react@latest react-dom@latest eslint-config-next@latest
To update to the latest canary, make sure you're on the latest version of Next.js and everything is working as expected. Then, run the following command:
pnpm add next@canary
npm i next@canary
yarn add next@canary
bun add next@canary
The following features are currently available in canary:
Authentication: