Align frontend with VitePWA webmanifest requirements

This commit is contained in:
wvffle 2022-10-13 19:03:06 +00:00 committed by Georg Krause
commit 7e53ee54e8
17 changed files with 79 additions and 1 deletions

View file

@ -28,6 +28,23 @@ export default defineConfig(({ mode }) => ({
enabled: true,
type: 'module',
navigateFallback: 'index.html'
},
manifest: {
name: 'Funkwhale',
short_name: 'Funkwhale',
description: 'TODO',
icons: [
{
src: 'android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png'
}
]
}
})
],