Browse Source

fix: Icon size in manifest (#7073)

pull/7074/head
Thomas Steiner 2 years ago committed by GitHub
parent
commit
6a821f3b76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/manifest.json
  2. 2
      vite.config.ts

2
public/manifest.json

@ -11,7 +11,7 @@
{ {
"src": "apple-touch-icon.png", "src": "apple-touch-icon.png",
"type": "image/png", "type": "image/png",
"sizes": "256x256" "sizes": "180x180"
} }
], ],
"start_url": "/", "start_url": "/",

2
vite.config.ts

@ -111,7 +111,7 @@ export default defineConfig({
{ {
src: "apple-touch-icon.png", src: "apple-touch-icon.png",
type: "image/png", type: "image/png",
sizes: "256x256", sizes: "180x180",
}, },
], ],
start_url: "/", start_url: "/",

Loading…
Cancel
Save