chore: 💨

This commit is contained in:
codytseng 2025-10-11 16:10:25 +08:00
parent 9c71db405a
commit fb5434da91
19 changed files with 44 additions and 36 deletions

View file

@ -51,6 +51,12 @@ export default defineConfig({
name: 'Jumble',
short_name: 'Jumble',
icons: [
{
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any'
},
{
src: '/pwa-192x192.png',
sizes: '192x192',
@ -61,27 +67,26 @@ export default defineConfig({
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any'
purpose: 'maskable'
},
{
src: '/pwa-maskable-192x192.png',
src: '/pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'maskable'
},
{
src: '/pwa-maskable-512x512.png',
src: '/pwa-monochrome.svg',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable'
type: 'image/svg+xml',
purpose: 'monochrome'
}
],
start_url: '/',
display: 'standalone',
background_color: '#FFFFFF',
theme_color: '#FFFFFF',
description:
'A user-friendly Nostr client focused on relay feed browsing and relay discovery'
description: packageJson.description
}
})
]