/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/extract-source-map-css/webpack.config.js
20 строк
287 B
Xiao
feat: add `extractSourceMap` option to implement the capabilities of loading source maps by comment
27 авг 2025, 18:53
Не верифицирован
27 авг 2025, 18:53
64ce283
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "web", mode: "development", devtool: "source-map", module: { rules: [ { test: /\.css$/i, type: "css", extractSourceMap: true } ] }, experiments: { css: true } };