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 +})