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

12 lines
222 B
JavaScript

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