Fix: progressive-web-app example (#20288)

Fixes: #20289 
I noticed the following errors about missing icon files while working on the progressive-web-app example
<img width="639" alt="Screenshot 2020-12-18 at 9 16 25 AM" src="https://user-images.githubusercontent.com/11258286/102572751-e3ae4d80-4112-11eb-896a-2facfb5e16d3.png">

I've added the missing icon files and updated the path :)
This commit is contained in:
Darsh Patel 2020-12-18 15:43:02 +05:30 committed by GitHub
parent ce4def79b3
commit bad9a8c960
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View file

@ -17,13 +17,13 @@ export default function MyApp({ Component, pageProps }) {
<link rel="manifest" href="/manifest.json" />
<link
href="/favicon-16x16.png"
href="/icons/favicon-16x16.png"
rel="icon"
type="image/png"
sizes="16x16"
/>
<link
href="/favicon-32x32.png"
href="/icons/favicon-32x32.png"
rel="icon"
type="image/png"
sizes="32x32"

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB