/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/css-server-styles/webpack.config.js
25 строк
356 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", module: { rules: [ { test: /\.css$/, type: "css", parser: { exportType: "style" } } ] }, experiments: { css: true }, output: { uniqueName: "css-server-styles" } };