From 61633fa640793c344748efdf790a56456fad8e2f Mon Sep 17 00:00:00 2001 From: Claudio Ludovico <921500+ludo237@users.noreply.github.com> Date: Mon, 17 Aug 2020 21:51:45 +0200 Subject: [PATCH] fix(icon): update warning url to docs (#329) --- 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 71778990..97555957 100755 --- a/lib/meta/module.js +++ b/lib/meta/module.js @@ -109,7 +109,7 @@ function generateMeta (pwa) { const favicon = join(this.options.srcDir, this.options.dir.static, 'favicon.ico') if (options.favicon && !find(this.options.head.link, 'rel', 'shortcut icon') && existsSync(favicon)) { - console.warn('You are using a low quality icon, use icon png. See https://pwa.nuxtjs.org/modules/icon.html') + console.warn('You are using a low quality icon, use icon png. See https://pwa.nuxtjs.org/icon/') this.options.head.link.push({ rel: 'shortcut icon', href: 'favicon.ico' }) }