/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/statsCases/errors-space-without-details-error/webpack.config.js
21 строка
419 B
Alexander Akait
fix: several small correctness bugs (stats, css url, wasm [fullhash], defer context, html, ids, cache) (#21406)
13 июл 2026, 21:10
Не верифицирован
13 июл 2026, 21:10
ff2863b
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../").Configuration[]} */ module.exports = [ { entry: "./loader!./index.js", mode: "production", stats: { errorsSpace: 4, // trims error1's details, keeps the detail-less error2 errors: true } }, { entry: "./loader!./index.js", mode: "production", stats: { errorsSpace: 5, // keeps error1 in full, keeps the detail-less error2 errors: true } } ];