webpack/test/statsCases/preset-none-array/webpack.config.js

21 lines
277 B
JavaScript

/** @type {import("../../../").Configuration[]} */
module.exports = [
{
mode: "production",
entry: "./index",
output: {
filename: "a.js"
},
stats: "none"
},
{
mode: "production",
entry: "./index",
output: {
filename: "b.js"
},
stats: "none"
}
];