2025-07-16 22:29:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
2019-07-31 23:16:37 +08:00
|
|
|
const LogTestPlugin = require("../../helpers/LogTestPlugin");
|
2019-07-19 17:59:48 +08:00
|
|
|
|
2020-04-20 13:36:55 +08:00
|
|
|
/** @type {import("../../../").Configuration} */
|
2015-08-03 17:01:29 +08:00
|
|
|
module.exports = {
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2015-08-03 17:01:29 +08:00
|
|
|
entry: "./index",
|
2019-07-19 17:59:48 +08:00
|
|
|
stats: "errors-only",
|
2019-08-01 18:01:56 +08:00
|
|
|
infrastructureLogging: {
|
|
|
|
level: "error"
|
|
|
|
},
|
2019-07-31 23:16:37 +08:00
|
|
|
plugins: [new LogTestPlugin()]
|
2017-01-11 17:51:58 +08:00
|
|
|
};
|