Skip to content

Commit

Permalink
feat(head meta): add apple touch icon
Browse files Browse the repository at this point in the history
  • Loading branch information
damienrobinson committed Nov 24, 2024
1 parent 46db3e4 commit 46becb8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ export default defineNuxtConfig({
htmlAttrs: {
lang: 'en',
},
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.ico' },
],
meta: [
{
name: 'apple-mobile-web-app-status-bar-style',
Expand Down

0 comments on commit 46becb8

Please sign in to comment.