/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/external-in-node/webpack.config.js
32 строки
572 B
Alexander Akait
fix: property handle external modules for CSS (#19917)
19 сен 2025, 03:37
Не верифицирован
19 сен 2025, 03:37
8e94386
Код
Авторство
О чём код?
"use strict"; const path = require("path"); /** @type {import("../../../../").Configuration} */ module.exports = [ { context: path.join(__dirname, "../external"), entry: "../external-in-node/index.js", target: "node", optimization: { chunkIds: "named", moduleIds: "named" }, experiments: { css: true } }, { context: path.join(__dirname, "../external"), entry: "../external-in-node/index.js", target: "node", optimization: { chunkIds: "named", moduleIds: "named" }, experiments: { css: true, outputModule: true } } ];