Skip to content

Commit

Permalink
feat: add pwa icon
Browse files Browse the repository at this point in the history
  • Loading branch information
stampaaaron committed Sep 23, 2023
1 parent f47a256 commit 889d959
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Binary file added public/icon-192x192.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-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,18 @@ export default defineConfig({
theme_color: "#aaaaaa",
background_color: "#aaaaaa",
display: "standalone",
icons: [],
icons: [
{
src: "/icon-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
},
}),
],
Expand Down

0 comments on commit 889d959

Please sign in to comment.