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

12 lines
227 B
JavaScript

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