/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/css-modules-value-url-import/webpack.config.js
25 строк
351 B
Alexander Akait
feat: support CSS Modules `@value` identifiers as `@import` URLs and inside `url()` (#20925)
07 май 2026, 22:25
Не верифицирован
07 май 2026, 22:25
10c4fcf
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", mode: "development", experiments: { css: true }, output: { uniqueName: "value-url-import" }, node: { __dirname: false, __filename: false }, module: { rules: [ { test: /\.module\.css$/i, type: "css/module" } ] } };