/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/devtool-and-source-map-plugin/test.config.js
16 строк
317 B
Alexander Akait
fix: allow devtool and SourceMapDevToolPlugin to coexist on the same asset (#21001)
21 май 2026, 15:41
Не верифицирован
21 май 2026, 15:41
67b7419
Код
Авторство
О чём код?
"use strict"; module.exports = { findBundle(i, options) { if ( options && options.output && typeof options.output.filename === "string" ) { return [options.output.filename]; } const bundles = ["primary.js", "dual.js", "triple.js", "debug-fn.js"]; return bundles[i] ? [bundles[i]] : []; } };