/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/worker/node-worker/webpack.config.js
17 строк
435 B
Alexander Akait
fix: respect `node:` prefix everywhere (#19721)
23 июл 2025, 21:45
Не верифицирован
23 июл 2025, 21:45
ff7534a
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { a: { import: "./index.js?a", filename: "[name].js" }, b: { import: "./index.js?b", filename: "[name].js" }, c: { import: "./index.js?c", filename: "[name].js" }, d: { import: "./index.js?d", filename: "[name].js" } }, output: { filename: "[name].[contenthash].js", environment: { nodePrefixForCoreModules: false } } };