rsnext/errors/promise-in-next-config.md

20 lines
445 B
Markdown
Raw Normal View History

# Promise In Next Config
#### Why This Error Occurred
The webpack function in `next.config.js` returned a promise which is not supported in Next.js. For example, below is not supported:
```js
module.exports = {
2020-05-18 21:24:37 +02:00
webpack: async function (config) {
return config
},
}
```
#### Possible Ways to Fix It
Check your `next.config.js` for `async` or `return Promise`
Potentially a plugin is returning a `Promise` from the webpack function.