From 8c2acbf15dacdf42bd73be8ef93e1a8c3e51a673 Mon Sep 17 00:00:00 2001 From: lesion Date: Thu, 23 Jun 2022 15:51:03 +0200 Subject: [PATCH] fix logo url/path --- layouts/default.vue | 3 ++- nuxt.config.js | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/default.vue b/layouts/default.vue index 650bed6f..250a94a4 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -33,7 +33,8 @@ export default { return { htmlAttrs: { lang: this.locale - } + }, + link: [{ rel: 'icon', type: 'image/png', href: this.settings.baseurl + '/logo.png' }], } }, data () { diff --git a/nuxt.config.js b/nuxt.config.js index 35f429d9..5facdf60 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -13,7 +13,6 @@ module.exports = { { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' } ], - link: [{ rel: 'icon', type: 'image/png', href: config.baseurl + '/logo.png' }], script: [{ src: '/gancio-events.es.js', async: true, body: true }], }, dev: isDev,