/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/css/accept-split-chunks/webpack.config.js
27 строк
549 B
Xiao
fix: guard HarmonyAcceptDependency against unresolved module ids (#21302)
29 июн 2026, 21:57
Не верифицирован
29 июн 2026, 21:57
0abec4d
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { mode: "development", devtool: false, output: { filename: "[name].js" }, experiments: { css: true }, optimization: { sideEffects: true, // Keep the barrel module in the graph so its HMR accept handler is codegen'd // while lazy re-exports of unused targets stay unresolved. innerGraph: false, usedExports: false, providedExports: false, splitChunks: { chunks: "all", minSize: 1, maxSize: 20000 }, runtimeChunk: "single" } };