diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/app.html | 1 | ||||
-rw-r--r-- | app/vite.config.ts | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/app/src/app.html b/app/src/app.html index 54f3529..4950b86 100644 --- a/app/src/app.html +++ b/app/src/app.html @@ -2,6 +2,7 @@ <html lang="en" class="dark"> <head> <meta charset="utf-8" /> + <meta name="theme-color" content="#000000" /> <link rel="icon" href="%sveltekit.assets%/favicon.svg" /> <meta name="viewport" content="width=device-width" /> %sveltekit.head% diff --git a/app/vite.config.ts b/app/vite.config.ts index 33f2399..c31da3b 100644 --- a/app/vite.config.ts +++ b/app/vite.config.ts @@ -27,7 +27,8 @@ export default defineConfig({ { src: '/favicon.svg', sizes: 'any', - type: 'image/svg+xml' + type: 'image/svg+xml', + purpose: 'maskable' }, { src: '/pwa-512x512.png', |