We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cc7d63 commit 49a1938Copy full SHA for 49a1938
config/webpack.config.prod.js
@@ -305,6 +305,13 @@ module.exports = {
305
// about it being stale, and the cache-busting can be skipped.
306
dontCacheBustUrlsMatching: /\.\w{8}\./,
307
filename: 'service-worker.js',
308
+ logger(message) {
309
+ if (message.indexOf('Total precache size is') === 0) {
310
+ // This message occurs for every build and is a bit too noisy.
311
+ return;
312
+ }
313
+ console.log(message);
314
+ },
315
minify: true,
316
navigateFallback: publicUrl + '/index.html',
317
staticFileGlobsIgnorePatterns: [/\.map$/, /asset-manifest\.json$/],
0 commit comments