/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/css-server-styles-alone/webpack.config.js
19 строк
408 B
Alexander Akait
feat(css): add __webpack_css_server_styles__ to read server-collected CSS (#21576)
01 авг 2026, 22:03
Не верифицирован
01 авг 2026, 22:03
d3e5a0b
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { devtool: false, target: ["web", "node"], mode: "development", experiments: { css: true }, output: { uniqueName: "alone", // without `globalThis` the registry pulls in the global polyfill, which // would bring the require scope along and hide a missing one here environment: { globalThis: true } } };