From de8e039740a5618b59312682ecdea4f023d88414 Mon Sep 17 00:00:00 2001 From: pooya parsa Date: Wed, 7 Oct 2020 13:55:22 +0200 Subject: [PATCH] fix(meta): avoid unnecessary log for meta.json --- lib/meta/module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/meta/module.js b/lib/meta/module.js index 3399be4c..da30a130 100755 --- a/lib/meta/module.js +++ b/lib/meta/module.js @@ -298,7 +298,7 @@ function SPASupport (_pwa) { const metaJSON = resolve(nuxt.options.buildDir, 'pwa/meta.json') if (existsSync(metaJSON)) { // eslint-disable-next-line no-console - console.log('[PWA] Loading meta from ' + metaJSON) + console.debug('[PWA] Loading meta from ' + metaJSON) mergeMeta(nuxt.options.head, require(metaJSON)) } else { // eslint-disable-next-line no-console