/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/runtime/add-runtime/webpack.config.js
19 строк
315 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; module.exports = { optimization: { usedExports: true, // make 'lib' chunk runtime to be worker + entry splitChunks: { minSize: 0, chunks: "all", cacheGroups: { lib: { test: /[/\\]lib[/\\](a|b|index).js$/, name: "lib", filename: "bundle-lib.js" } } } } };