From 482e60830598af737e23484e85965189112cad8c Mon Sep 17 00:00:00 2001 From: Elisha Nuchi <31550519+enuchi@users.noreply.github.com> Date: Tue, 12 May 2020 01:36:34 -0400 Subject: [PATCH] Don't print DynamicCdnWebpackPlugin logs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • set verbose: `false` • add comment --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 2df9de6..de2b745 100755 --- a/webpack.config.js +++ b/webpack.config.js @@ -115,7 +115,8 @@ const clientConfigs = clientEntrypoints.map(clientEntrypoint => { new HtmlWebpackInlineSourcePlugin(), new WebpackCleanPlugin([path.join(destination, 'main.js')]), new DynamicCdnWebpackPlugin({ - verbose: true, + // set "verbose" to true to print console logs on CDN usage while webpack builds + verbose: false, resolver: (packageName, packageVersion, options) => { const moduleDetails = moduleToCdn( packageName,