rsnext/errors/undefined-webpack-config.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

28 lines
854 B
Text

---
title: Missing webpack config
---
## Why This Error Occurred
The value returned from the custom `webpack` function in your `next.config.js` was undefined. This can occur from the initial config value not being returned.
## Possible Ways to Fix It
Make sure to return the `webpack` config from your custom `webpack` function in your `next.config.js`
```js filename="next.config.js"
module.exports = {
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
// Note: we provide webpack above so you should not `require` it
// Perform customizations to webpack config
config.plugins.push(new webpack.IgnorePlugin(/\/__tests__\//))
// Important: return the modified config
return config
},
}
```
## Useful Links
- [Custom webpack config Documentation](/docs/pages/api-reference/next-config-js/webpack)