Skip to content

Commit

Permalink
fix: path to icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Pkcarreno committed Jun 3, 2024
1 parent d4cdfbd commit b769360
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,25 @@ export default defineConfig(({ mode }) => {
description: 'Write, run, and share JavaScript code instantly.',
icons: [
{
src: '/pwa-192x192.png',
src: `${process.env.BASE_URL}/pwa-192x192.png`,
sizes: '192x192',
type: 'image/png',
purpose: 'any',
},
{
src: '/pwa-512x512.png',
src: `${process.env.BASE_URL}/pwa-512x512.png`,
sizes: '512x512',
type: 'image/png',
purpose: 'any',
},
{
src: '/pwa-maskable-192x192.png',
src: `${process.env.BASE_URL}/pwa-maskable-192x192.png`,
sizes: '192x192',
type: 'image/png',
purpose: 'maskable',
},
{
src: '/pwa-maskable-512x512.png',
src: `${process.env.BASE_URL}/pwa-maskable-512x512.png`,
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
Expand Down

0 comments on commit b769360

Please sign in to comment.