diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-09-15 14:21:11 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-09-15 14:21:11 -0500 |
commit | 00a3f1add0587952e6043a21b132ebd3adce426d (patch) | |
tree | 9f357647c7f1b96a9bbe6d94580c0de4cd2558c9 /app/vite.config.ts | |
parent | Don't cache the server files!!! (diff) | |
download | trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar.gz trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar.bz2 trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar.lz trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar.xz trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.tar.zst trinkets-00a3f1add0587952e6043a21b132ebd3adce426d.zip |
add some more defaults to the manifest
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'app/vite.config.ts')
-rw-r--r-- | app/vite.config.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/vite.config.ts b/app/vite.config.ts index 59d8f0d..418d60c 100644 --- a/app/vite.config.ts +++ b/app/vite.config.ts @@ -27,9 +27,12 @@ export default defineConfig({ { src: '/favicon.svg', sizes: 'any', - type: 'image/svg+xml' + type: 'image/svg+xml', + purpose: 'any maskable' } - ] + ], + id: "/", + theme_color: '#000000', }, registerType: 'autoUpdate', workbox: { |