diff --git a/nuxt4-app/nuxt.config.ts b/nuxt4-app/nuxt.config.ts index 09b2dbc..b657551 100644 --- a/nuxt4-app/nuxt.config.ts +++ b/nuxt4-app/nuxt.config.ts @@ -44,7 +44,7 @@ export default defineNuxtConfig({ head: { link: [ { rel: 'icon', type: 'image/png', href: `${process.env.BASE_URL || ''}/icons/icon-192.png` }, - { rel: 'apple-touch-icon', sizes: '192x192', href: `${process.env.BASE_URL || ''}/icons/icon-192.png` }, + { rel: 'apple-touch-icon', sizes: '192x192', href: `${process.env.BASE_URL || ''}/apple-touch-icon.png` }, { rel: 'manifest', href: `${process.env.BASE_URL || ''}/manifest.webmanifest` } ], meta: [ @@ -142,6 +142,7 @@ export default defineNuxtConfig({ }, includeAssets: [ 'favicon.ico', + 'apple-touch-icon.png', 'icons/icon-192.png', 'icons/icon-512.png', 'icons/icon-192-maskable.png', diff --git a/nuxt4-app/public/apple-touch-icon.png b/nuxt4-app/public/apple-touch-icon.png new file mode 100644 index 0000000..15a6042 Binary files /dev/null and b/nuxt4-app/public/apple-touch-icon.png differ