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

20 lines
226 B
JavaScript
Raw Normal View History

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"
}
];