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

21 lines
277 B
JavaScript
Raw Normal View History

/** @type {import("../../../").Configuration[]} */
module.exports = [
{
mode: "production",
entry: "./index",
output: {
filename: "a.js"
},
stats: "none"
},
2018-01-19 16:21:00 +08:00
{
mode: "production",
entry: "./index",
output: {
filename: "b.js"
},
stats: "none"
}
];