Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 625 Bytes

improper-devtool.mdx

File metadata and controls

22 lines (17 loc) · 625 Bytes
title
Improper webpack `devtool` used in development mode

Why This Error Occurred

Next.js chooses the most optimal devtool for use with webpack. Changing the devtool in development mode will cause severe performance regressions with your application.

Possible Ways to Fix It

Please remove the custom devtool override or only apply it to production builds in your next.config.js.

module.exports = {
  webpack: (config, options) => {
    if (!options.dev) {
      config.devtool = options.isServer ? false : 'your-custom-devtool'
    }
    return config
  },
}