Skip to content

Commit

Permalink
Another attempt to fix icon route
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-robert committed Apr 19, 2024
1 parent 96f0606 commit 2a7c538
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,15 @@ export default defineConfig(({ mode }) => {
theme_color: "#6c4bc1",
icons: [
{
src: "/logo512.png",
src: `${process.env.BASE_URL ?? "/"}logo512.png`,
sizes: "512x512",
type: "image/png",
},
{
src: `${process.env.BASE_URL ?? "/"}logo192.png`,
sizes: "192x192",
type: "image/png",
},
],
},
}),
Expand Down

0 comments on commit 2a7c538

Please sign in to comment.