webpack/test/statsCases/preset-errors-only-error/webpack.config.js

15 lines
291 B
JavaScript

"use strict";
const LogTestPlugin = require("../../helpers/LogTestPlugin");
/** @type {import("../../../").Configuration} */
module.exports = {
mode: "production",
entry: "./index",
stats: "errors-only",
infrastructureLogging: {
level: "error"
},
plugins: [new LogTestPlugin()]
};