Skip to content

Commit

Permalink
Docs: improve app icons
Browse files Browse the repository at this point in the history
  • Loading branch information
icflorescu committed Nov 1, 2023
1 parent 679dd43 commit fb1df68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions app/manifest.webmanifest/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,26 @@ const data: MetadataRoute.Manifest = {
sizes: 'any',
purpose: 'any',
},
{
src: `${urlPrefix}/icon.svg`,
type: 'image/svg+xml',
sizes: 'any',
purpose: 'maskable',
},
{
src: `${urlPrefix}/icon-192.png`,
type: 'image/png',
sizes: '192x192',
purpose: 'any',
},
{
src: `${urlPrefix}/icon-192.png`,
type: 'image/png',
sizes: '192x192',
purpose: 'maskable',
},
{
src: `${urlPrefix}/icon-512.png`,
type: 'image/png',
sizes: '512x512',
purpose: 'any',
},
{
src: `${urlPrefix}/icon-512.png`,
src: `${urlPrefix}/icon-maskable-192.png`,
type: 'image/png',
sizes: '192x192',
purpose: 'maskable',
},
{
src: `${urlPrefix}/icon-maskable-512.png`,
type: 'image/png',
sizes: '512x512',
purpose: 'maskable',
Expand Down
Binary file added public/icon-maskable-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icon-maskable-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fb1df68

Please sign in to comment.