Skip to content

Commit

Permalink
fix(meta): avoid unnecessary log for meta.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 7, 2020
1 parent 7a1e773 commit de8e039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/meta/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit de8e039

Please sign in to comment.