webpack/test/statsCases/performance-disabled/webpack.config.js

12 lines
196 B
JavaScript
Raw Normal View History

/** @type {import("../../../").Configuration} */
2016-12-14 19:03:24 +08:00
module.exports = {
mode: "production",
2016-12-14 19:03:24 +08:00
entry: "./index",
stats: {
colors: true,
hash: false,
entrypoints: true
},
performance: false
};