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

12 lines
222 B
JavaScript

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