mirror of https://github.com/webpack/webpack.git
15 lines
291 B
JavaScript
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()]
|
|
};
|