We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cfff7 commit dd484c3Copy full SHA for dd484c3
1 file changed
lib/WebpackError.js
@@ -9,11 +9,11 @@ module.exports = class WebpackError extends Error {
9
super(message);
10
11
this.message = message;
12
+ this.details = undefined;
13
+
14
Error.captureStackTrace(this, this.constructor);
15
}
16
- get details() {}
-
17
inspect() {
18
return this.stack + (this.details ? `\n${this.details}` : "");
19
0 commit comments