Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 444 Bytes

promise-in-next-config.md

File metadata and controls

19 lines (13 loc) · 444 Bytes

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:

module.exports = {
  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.