We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16ec42 commit 2551fd3Copy full SHA for 2551fd3
1 file changed
compare.js
@@ -23,7 +23,9 @@ const options = require(path.join(
23
24
const BUDGET = options.budget
25
const BUDGET_PERCENT_INCREASE_RED = options.budgetPercentIncreaseRed
26
-const SHOW_DETAILS = options.showDetails
+// this must be explicitly set to false not to render
27
+const SHOW_DETAILS =
28
+ options.showDetails === undefined ? true : options.showDetails
29
30
// kick it off
31
let output = `## 📦 Next.js Bundle Analysis
0 commit comments