webpack/test/configCases/worker/node-worker/webpack.config.js

13 lines
363 B
JavaScript

/** @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"
}
};