到目前为止,我在使用最新版本的 Vue CLI 生成的这个项目时遇到了很大的麻烦。favicon 没有显示,我之前删除了public文件夹中的/img文件夹,并将我自己的 favicon.png 添加到 index.html 文件中。
当我运行项目时,图标不显示并检查客户端代码,它会自动得到注释,如图所示。如果我修改注释行,我的自定义图标会正确显示,所以我想知道如何解决这个问题。
index.html 文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="./favicon.png">
<title> myApp </title>
</head>
<body>
<noscript>
<strong>We're sorry but myApp doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
此外,正如您在代码中看到的那样,我已经删除了<%= htmlWebpackPlugin.options.title %>
最初生成的内容,因为它对我没用。非常感谢任何可以帮助我的人!