diff --git a/apps/stage-web/public/maskable_icon_x192.png b/apps/stage-web/public/maskable_icon_x192.png index 106e21b24..9a1728ebd 100644 Binary files a/apps/stage-web/public/maskable_icon_x192.png and b/apps/stage-web/public/maskable_icon_x192.png differ diff --git a/apps/stage-web/public/maskable_icon_x512.png b/apps/stage-web/public/maskable_icon_x512.png index 97da486e5..2a56ae126 100644 Binary files a/apps/stage-web/public/maskable_icon_x512.png and b/apps/stage-web/public/maskable_icon_x512.png differ diff --git a/apps/stage-web/vite.config.ts b/apps/stage-web/vite.config.ts index 050761f87..2d925b8e0 100644 --- a/apps/stage-web/vite.config.ts +++ b/apps/stage-web/vite.config.ts @@ -115,6 +115,16 @@ export default defineConfig({ name: 'AIRI', short_name: 'AIRI', icons: [ + { + src: '/web-app-manifest-192x192.png', + sizes: '192x192', + type: 'image/png', + }, + { + src: '/web-app-manifest-512x512.png', + sizes: '512x512', + type: 'image/png', + }, { purpose: 'maskable', sizes: '192x192', @@ -127,16 +137,6 @@ export default defineConfig({ src: '/maskable_icon_x512.png', type: 'image/png', }, - { - src: '/web-app-manifest-192x192.png', - sizes: '192x192', - type: 'image/png', - }, - { - src: '/web-app-manifest-512x512.png', - sizes: '512x512', - type: 'image/png', - }, ], }, workbox: {