Skip to content

Commit fcaf46e

Browse files
axpnetaeroftp[bot]claude
committed
chore(pwa): add standard mobile-web-app-capable meta tag
Adds the standard mobile-web-app-capable meta tag alongside the apple-prefixed one, resolving the DevTools deprecation warning while keeping the legacy tag for older iOS Safari. Co-authored-by: aeroftp[bot] <aeroftp[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5d24eac commit fcaf46e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.vitepress/config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ export default defineConfig({
2020
['link', { rel: 'icon', type: 'image/png', sizes: '96x96', href: '/favicon-96x96.png' }],
2121
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' }],
2222
['link', { rel: 'manifest', href: '/manifest.webmanifest' }],
23+
// Standard PWA meta (Chrome/Android). Resolves the DevTools deprecation
24+
// warning for the apple- prefixed tag, which is kept for older iOS Safari.
25+
['meta', { name: 'mobile-web-app-capable', content: 'yes' }],
2326
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
2427
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' }],
2528
['meta', { name: 'apple-mobile-web-app-title', content: 'AeroFTP Docs' }],

0 commit comments

Comments
 (0)