Skip to content

Commit de8e039

Browse files
committed
fix(meta): avoid unnecessary log for meta.json
1 parent 7a1e773 commit de8e039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/meta/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ function SPASupport (_pwa) {
298298
const metaJSON = resolve(nuxt.options.buildDir, 'pwa/meta.json')
299299
if (existsSync(metaJSON)) {
300300
// eslint-disable-next-line no-console
301-
console.log('[PWA] Loading meta from ' + metaJSON)
301+
console.debug('[PWA] Loading meta from ' + metaJSON)
302302
mergeMeta(nuxt.options.head, require(metaJSON))
303303
} else {
304304
// eslint-disable-next-line no-console

0 commit comments

Comments
 (0)