You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/configuration/stats.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ contributors:
5
5
- SpaceK33z
6
6
- sallar
7
7
- jungomi
8
+
- ldrick
8
9
---
9
10
10
11
The `stats` option lets you precisely control what bundle information gets displayed. This can be a nice middle ground if you don't want to use `quiet` or `noInfo` because you want some bundle information, but not all of it.
@@ -66,8 +67,19 @@ stats: {
66
67
errors:true,
67
68
// Add details to errors (like resolving log)
68
69
errorDetails:true,
69
-
// Exclude modules which match one of the given strings or regular expressions
70
-
exclude: [],
70
+
// Exclude assets from being displayed in stats
71
+
// This can be done with a String, a RegExp, a Function getting the assets name
72
+
// and returning a boolean or an Array of the above.
0 commit comments