diff --git a/client/public/favicon_SETUP.md b/client/public/favicon_SETUP.md new file mode 100644 index 0000000..eed3bfd --- /dev/null +++ b/client/public/favicon_SETUP.md @@ -0,0 +1,38 @@ +# Favicon SETUP + +1. Go to [https://favicon.io](https://favicon.io) +2. Generate an icon pack +3. Drop all images in `/client/public/` +4. And configure these 2 files: + +### manifest.json: + +``` +"icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src":"android-chrome-192x192.png", + "sizes":"192x192", + "type":"image/png" + }, + { + "src":"android-chrome-512x512.png", + "sizes":"512x512", + "type":"image/png" + } +], +``` + +### index.html: + +``` + + + + + +```