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

30 lines
384 B
JavaScript
Raw Normal View History

module.exports = [
{
name: "minimal",
mode: "production",
entry: "./index",
stats: "minimal"
},
2018-01-19 16:21:00 +08:00
{
name: "none",
mode: "production",
entry: "./index",
stats: false
},
2018-01-19 16:21:00 +08:00
{
name: "verbose",
mode: "production",
entry: "./index",
stats: {
entrypoints: true,
hash: false,
timings: false,
builtAt: false,
chunks: false,
assets: false
}
}
];