/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/production/error-plugin-stack-overflow/next.config.js
15 строк
328 B
Tim Neutkens
Convert test/integration to isolated tests (#93247)
11 май 2026, 14:55
Не верифицирован
11 май 2026, 14:55
8141dcf
Код
Авторство
О чём код?
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 }, }