Skip to content

Commit 3a22709

Browse files
committed
Fix deprecation on meta PWA element
1 parent 427c7ce commit 3a22709

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎src/components/Head/Meta.astro‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ const slug = path.replace(/^\//, '').replace(/\/$/, '') || 'home'
6565
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6666
{/* Apple-specific settings */}
6767
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
68-
{/* Allows the web app to run in full-screen mode on iOS */}
69-
<meta name="apple-mobile-web-app-capable" content="yes">
7068
{/* Status bar style with values such as "default" or "black-translucent" */}
7169
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
7270
{/* Web manifest file for Progressive Web Application app usage */}
7371
<link rel="manifest" href={absoluteUrl('manifest.json', Astro.site)} />
72+
{/* Allows the web app to run in full-screen mode */}
73+
<meta name="mobile-web-app-capable" content="yes">
7474
{/* RSS Feed */}
7575
<link
7676
type="application/rss+xml"

0 commit comments

Comments
 (0)