/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v15.5.22
errors/version-staleness.mdx
63 строки
2 KB
Delba de Oliveira
Docs IA 2.0: Move migration docs under `Guides` (#78193)
15 апр 2025, 18:39
Не верифицирован
15 апр 2025, 18:39
bd0da32
Код
Авторство
О чём код?
--- title: 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: ```bash filename="Terminal" npm i next@canary ``` ```bash filename="Terminal" yarn add next@canary ``` ```bash filename="Terminal" pnpm add next@canary ``` ```bash filename="Terminal" bun add next@canary ``` If you are using a stable release, upgrade Next.js with one of the following: ```bash filename="Terminal" npm i next@latest ``` ```bash filename="Terminal" yarn add next@latest ``` ```bash filename="Terminal" pnpm add next@latest ``` ```bash filename="Terminal" bun add next@latest ``` If you are coming from an older major version, check out our [upgrade guides](/docs/pages/guides/upgrading). ### 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 - [Upgrade guide](/docs/pages/guides/upgrading) - [Video: How to Contribute to Open Source (Next.js)](https://www.youtube.com/watch?v=cuoNzXFLitc) - [Contributing to Next.js](https://github.com/vercel/next.js/blob/canary/contributing.md) - [Triaging issues](https://github.com/vercel/next.js/blob/canary/contributing/repository/triaging.md) - [Verifying canary](https://github.com/vercel/next.js/blob/canary/.github/comments/verify-canary.md) - [Adding a reproduction](https://github.com/vercel/next.js/blob/canary/.github/comments/invalid-reproduction.md) - [Simplifying a reproduction](https://github.com/vercel/next.js/blob/canary/.github/comments/simplify-reproduction.md)