Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
informaticadiaz committed Jan 14, 2024
1 parent 1fb3e2d commit 1c9e805
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,34 @@ export default defineConfig({
display: 'standalone',
icons: [
{
src: 'pwa-64x64.png',
sizes: '64x64',
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'pwa-192x192.png',
sizes: '192x192',
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png'
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any'
purpose: 'any'
},
{
src: 'maskable-icon-512x512.png',
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'monochrome'
},
{
src: 'mask-icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable'
}

]
},
registerType: 'autoUpdate',
Expand Down

0 comments on commit 1c9e805

Please sign in to comment.