webpack/test/statsCases/module-trace-disabled-in-error/webpack.config.js

13 lines
198 B
JavaScript

"use strict";
/** @type {import("../../../").Configuration} */
module.exports = {
mode: "production",
entry: "./index",
stats: {
hash: false,
moduleTrace: false,
errorDetails: false
}
};