index.html 文件中的图标在 vue js 中不起作用

fav icon in index.html file not work in vuejs

尽管路径正确,但 vue.js 项目中 index.html 的文件中没有显示收藏夹图标?

 <meta charset="utf-8">
    <link rel="icon" href="./src/assets/images/logo.png" type="image/png" sizes="96x96">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <title>demo</title>
  </head>

假设您的 index.html 位于您的 public 目录中,您的 favicon 徽标图像也应该位于 public 目录中,因为实际上并没有提供 src/ 上的所有内容,而是由 webpack 编译,因此 index.html 文件无法访问。