/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/runtime-issue/webpack.config.js
36 строк
547 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", mode: "development", experiments: { css: true }, entry: { main: { import: ["./share.js", "./entry1.js"] }, secondMain: { import: ["./share.js", "./entry2.js"] } }, optimization: { splitChunks: { chunks: "all", cacheGroups: { common: { name: false, chunks: "all", test() { return true; } } } } }, output: { filename: "[name].js", assetModuleFilename: "[name][ext]" } };