Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs with minimum node version 14.x #41482

Merged
merged 1 commit into from Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started.md
Expand Up @@ -14,7 +14,7 @@ If you have questions about anything related to Next.js, you're always welcome t

#### System Requirements

- [Node.js 12.22.0](https://nodejs.org/) or later
- [Node.js 14.0.0](https://nodejs.org/) or newer
- MacOS, Windows (including WSL), and Linux are supported

## Automatic Setup
Expand Down
2 changes: 2 additions & 0 deletions docs/upgrading.md
Expand Up @@ -6,6 +6,8 @@ description: Learn how to upgrade Next.js.

## Upgrading from 12 to 13

The minimum Node.js version has been bumped from 12.22.0 to 14.0.0, since 12.x has reached end-of-life.

The `next/image` import was renamed to `next/legacy/image`. The `next/future/image` import was renamed to `next/image`.
A [codemod is available](/docs/advanced-features/codemods.md#next-image-to-legacy-image) to safely and automatically rename your imports.

Expand Down