# Plugin not compatible with a specific version of Next.js

#### Why This Error Occurred

Some Next.js plugins need specific functionality provided in newer versions of Next.js

#### Possible Ways to Fix It

Upgrade Next.js to the latest version

```
npm i next@latest
```

You can also upgrade `react` and `react-dom`


```
npm i react react-dom
```
