rsnext/errors/future-webpack5-moved-to-webpack5.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

33 lines
657 B
Text

---
title: '`future.webpack5` has been moved to `webpack5`'
---
## Why This Error Occurred
The `future.webpack5` option has been moved to `webpack5` in `next.config.js`.
## Possible Ways to Fix It
If you had the value `true` you can remove the option as webpack 5 is now the default for all Next.js apps unless opted out.
If you had the value `false` you can update `next.config.js`:
Change `future.webpack5` to `webpack5`.
Current `next.config.js`:
```js filename="next.config.js"
module.exports = {
future: {
webpack5: false,
},
}
```
Updated `next.config.js`:
```js filename="next.config.js"
module.exports = {
webpack5: false,
}
```