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

9 lines
175 B
JavaScript

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