/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/extract/webpack.config.js
22 строки
305 B
Alexander Akait
feat(html): add `module.generator.html.extract` option (#20979)
19 май 2026, 22:41
Не верифицирован
19 май 2026, 22:41
45a1bab
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { output: { filename: "[name].js", chunkFilename: "[name].chunk.js" }, optimization: { chunkIds: "named" }, module: { generator: { html: { extract: true } } }, experiments: { html: true } };