/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/split-chunks/css-enforce/webpack.config.js
25 строк
383 B
Alexander Akait
test: mini css extract plugin tests
27 мар 2026, 14:15
Не верифицирован
27 мар 2026, 14:15
807a88e
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", experiments: { css: true }, output: { filename: "[name].js", chunkFilename: "[name].chunk.js" }, optimization: { splitChunks: { chunks: "all", cacheGroups: { vendors: { name: "vendors", test: /node_modules/, enforce: true } } } } };