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

13 lines
187 B
JavaScript

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