From 9de199e9d0dafa12d6665271579debf757223d32 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Fri, 2 Jan 2026 19:21:43 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20ajouter=20l'ic=C3=B4ne=20apple-touch-ico?= =?UTF-8?q?n=20dans=20le=20fichier=20app.vue=20et=20corriger=20l'ordre=20d?= =?UTF-8?q?es=20modules=20dans=20nuxt.config.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/app.vue | 3 ++- nuxt.config.ts | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/app.vue b/app/app.vue index 6b17156..3e970c7 100644 --- a/app/app.vue +++ b/app/app.vue @@ -8,7 +8,8 @@ useHead({ separator: '•' }, link: [ - { rel: 'icon', type: 'image/webp', href: '/favicon.webp' } + { rel: 'icon', type: 'image/webp', href: '/favicon.webp' }, + { rel: 'apple-touch-icon', href: '/favicon.webp' } ], htmlAttrs: { lang: 'en' diff --git a/nuxt.config.ts b/nuxt.config.ts index 0100e9d..fed0cb3 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,14 +1,14 @@ export default defineNuxtConfig({ modules: [ + '@nuxtjs/seo', '@nuxt/ui', '@nuxtjs/mdc', '@nuxt/content', '@nuxthub/core', '@nuxt/eslint', '@vueuse/nuxt', - 'nuxt-studio', - '@nuxtjs/seo' + 'nuxt-studio' ], devtools: { @@ -129,4 +129,4 @@ export default defineNuxtConfig({ branch: 'master' } } -}) \ No newline at end of file +})