Skip to content

Commit

Permalink
fix: correct pwa icon paths
Browse files Browse the repository at this point in the history
  • Loading branch information
herteleo committed Apr 4, 2022
1 parent 1b28a8d commit 39d4483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export default defineConfig(({ mode }) => {
theme_color: '#04060a',
icons: [
{
src: '/icon-192x192.png',
src: 'icon-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icon-512x512.png',
src: 'icon-512x512.png',
sizes: '512x512',
type: 'image/png',
},
Expand Down

0 comments on commit 39d4483

Please sign in to comment.