From c2441585015a5eb41062d0e18999f8b7a19e2000 Mon Sep 17 00:00:00 2001 From: chenxsan Date: Fri, 22 Jul 2022 21:20:10 +0800 Subject: [PATCH] docs(plugins): fix stale content --- src/content/plugins/module-concatenation-plugin.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/content/plugins/module-concatenation-plugin.mdx b/src/content/plugins/module-concatenation-plugin.mdx index c1d09b279866..4498c4224c86 100644 --- a/src/content/plugins/module-concatenation-plugin.mdx +++ b/src/content/plugins/module-concatenation-plugin.mdx @@ -84,14 +84,12 @@ function tryToAdd(group, module) { ### Debugging Optimization Bailouts -When using the webpack CLI, the `--display-optimization-bailout` flag will display bailout reasons. When using the webpack config, add the following to the `stats` object: +When using the webpack CLI, the `--stats-optimization-bailout` flag will display bailout reasons. When using the webpack config, add the following to the `stats` object: ```js module.exports = { //... stats: { - // Examine all modules - maxModules: Infinity, // Display bailout reasons optimizationBailout: true, },