next.js/test/integration/next-dynamic-lazy-compilation/next.config.js
next.config.js9 lines165 B
module.exports = {
  webpack(config, { isServer, dev }) {
    if (!isServer && dev) {
      config.experiments.lazyCompilation = true
    }
    return config
  },
}
Quest for Codev2.0.0
/
SIGN IN