/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/statsCases/split-chunks-combinations/webpack.config.js
31 строка
441 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const stats = { hash: false, timings: false, builtAt: false, assets: false, chunks: true, chunkRelations: true, chunkOrigins: true, entrypoints: true, modules: false }; /** @type {import("../../../").Configuration} */ module.exports = { mode: "production", entry: { main: "./" }, output: { filename: "[name].js" }, optimization: { splitChunks: { minSize: 100, minRemainingSize: 0 } }, stats };