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

16 lines
227 B
JavaScript

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