next.js/test/integration/error-plugin-stack-overflow/next.config.js
next.config.js16 lines328 B
module.exports = {
  webpack(config) {
    config.plugins.push((c) => {
      c.hooks.compilation.tap('next.config.js', (compilation) => {
        compilation.hooks.processAssets.tap('next.config.js', () => {
          function f() {
            f()
          }
          f()
        })
      })
    })
    return config
  },
}
Quest for Codev2.0.0
/
SIGN IN