Version Staleness
Why This Error Occurred
In the error overlay, a message was shown that the detected Next.js version was out-of-date.
To get the newest features and bug fixes, it is recommended to stay up to date.
Possible Ways to Fix It
If you are testing out a canary release, upgrade Next.js with one of the following:
Terminal
npm i next@canaryTerminal
yarn add next@canaryTerminal
pnpm add next@canaryTerminal
bun add next@canaryIf you are using a stable release, upgrade Next.js with one of the following:
Terminal
npm i next@latestTerminal
yarn add next@latestTerminal
pnpm add next@latestTerminal
bun add next@latestIf you are coming from an older major version, check out our upgrade guides.
Note
If you want to report a bug on GitHub, you should upgrade to the newest canary release of Next.js first, to see if the bug has already been fixed in canary.
Useful Links
Was this helpful?