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" } ] }