webpack/test/configCases/entry/function/webpack.config.js

13 lines
170 B
JavaScript

/** @type {import("../../../../").Configuration} */
module.exports = {
entry() {
return {
a: "./a",
b: ["./b"]
};
},
output: {
filename: "[name].js"
}
};