# 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:
```
```