webpack/test/statsCases/preset-minimal/webpack.config.js

13 lines
271 B
JavaScript

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