From 071ecb284ea5a1fbd6b09276c1c12241e383f469 Mon Sep 17 00:00:00 2001 From: Mysterious_Dev <40738104+Mysterious-Dev@users.noreply.github.com> Date: Thu, 18 Jan 2024 17:57:20 +0100 Subject: [PATCH] Add apple touch icon to head (#1453) --- nuxt.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 3718c76f..25613149 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -66,6 +66,9 @@ export default defineNuxtConfig({ ...Object.entries(favicons).map(([media, href]): object => { return { rel: 'icon', type: 'image/x-icon', href, media } }), + ...Object.entries(favicons).map(([media, href]): object => { + return { rel: 'apple-touch-icon', type: 'image/x-icon', href, media, sizes: '64x64' } + }), { rel: 'search', type: 'application/opensearchdescription+xml',