/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/import-custom-loader/import-loader.js
8 строк
311 B
Alexander Akait
Experimental HTML: parser/generator options, compilation hooks, and fixes (#21441)
19 июл 2026, 23:58
Не верифицирован
19 июл 2026, 23:58
cb904da
Код
Авторство
О чём код?
"use strict"; // Custom loader scoped to `@import`ed CSS via `dependency: "css-import"`. // Proves developers can preprocess a specific `@import` request. /** @type {import("../../../../").LoaderDefinition} */ module.exports = function (source) { return source.replace("__IMPORT_LOADER_COLOR__", "green"); };