/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/worker/worker-module-hashed/webpack.config.js
22 строки
488 B
Alexander Akait
feat(esm): bake analyzable references per asset, and drop the asset wrapper no one reads (#21688)
12 авг 2026, 15:50
Не верифицирован
12 авг 2026, 15:50
7299185
Код
Авторство
О чём код?
"use strict"; // The worker chunk is named by its own content, so its name is reserved and filled // in later — into the entry, which no template names by its content. /** @type {import("../../../../").Configuration} */ module.exports = { target: "node14", mode: "development", devtool: false, optimization: { chunkIds: "named" }, output: { module: true, publicPath: "auto", workerChunkFilename: "[name].[contenthash].mjs" }, experiments: { outputModule: true } };