/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/resource-path/webpack.config.js
21 строка
333 B
Alexander Akait
feat: make `experiments.layers` stable (#19852)
29 авг 2025, 16:08
Не верифицирован
29 авг 2025, 16:08
76ce24f
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { node: { __dirname: false, __filename: false }, devtool: "source-map", entry: { main: { import: "./index", layer: "something" } }, output: { devtoolModuleFilenameTemplate(info) { return info.absoluteResourcePath; } } };