/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/multiple-entries/webpack.config.js
26 строк
474 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", entry: { basic: "./basic.js", one: "./one.css", two: "./two.css", three: "./three.css", four: "./four.css", five: "./five.css", common: "./commonjs.js", six: { import: "./six.js", dependOn: "common" } }, output: { filename: "[name].js", chunkFilename: "[name].chunk.js" }, optimization: { chunkIds: "named" }, experiments: { css: true } };