Tag Archives: mainfest Image Error

mainfest Image Error: (img/icons/andriod-chrome-192×192.png)Download error or resource isn’t a vaild image

Configure the logo label of vue-cli (ie: label icon)

Solution:

1. Add in the entry file index.html

<link rel="shortcut icon" type="image/x-icon" href="./img/logo.png">

 

 

2. Add the manifest.json file to the public folder
{
     "icons": [
    {
      "src": "./img/logo.png",
      "type": "image/png"
    }
  ]
}