mirror of https://github.com/webpack/webpack.git
30 lines
384 B
JavaScript
30 lines
384 B
JavaScript
module.exports = [
|
|
{
|
|
name: "minimal",
|
|
mode: "production",
|
|
entry: "./index",
|
|
stats: "minimal"
|
|
},
|
|
|
|
{
|
|
name: "none",
|
|
mode: "production",
|
|
entry: "./index",
|
|
stats: false
|
|
},
|
|
|
|
{
|
|
name: "verbose",
|
|
mode: "production",
|
|
entry: "./index",
|
|
stats: {
|
|
entrypoints: true,
|
|
hash: false,
|
|
timings: false,
|
|
builtAt: false,
|
|
chunks: false,
|
|
assets: false
|
|
}
|
|
}
|
|
];
|