Add icons and short_name to fix PWA

This commit is contained in:
pinembour
2026-03-03 13:36:22 +01:00
parent fca54a60c4
commit 2db5d3c862
3 changed files with 4 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

+4 -3
View File
@@ -18,18 +18,19 @@ export default defineConfig({
{
purpose: 'maskable',
sizes: '512x512',
src: 'icon512_maskable.png',
src: 'icon512-maskable.png',
type: 'image/png'
},
{
purpose: 'any',
sizes: '512x512',
src: 'icon512_rounded.png',
src: 'icon512-any.png',
type: 'image/png'
}
],
display: 'standalone',
name: 'Materialious'
name: 'Materialious',
short_name: 'Materialious'
}
}),
sveltekit()