rsnext/errors/invalid-react-version.mdx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
418 B
Text
Raw Normal View History

---
title: Invalid React Version
---
## Why This Error Occurred
You tried running `next` in a project with an incompatible react version. Next.js uses certain react features that when are unavailable show this error since it can't work without them.
## Possible Ways to Fix It
Run `npm i react@latest react-dom@latest` or `yarn add react@latest react-dom@latest` in your project and then try running `next` again.