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

14 lines
211 B
JavaScript

"use strict";
/** @type {import("../../../").Configuration} */
module.exports = {
mode: "production",
entry: "./index",
stats: {
colors: true,
hash: false,
entrypoints: true
},
performance: false
};