在webpack中,我有以下代码:
{
test: /\.ico$/i,
use : "file-loader?name=/[name].[ext]"
}
在<head>
内的 index.html 中,我有以下代码:
<link rel="shortcut icon" href="favicon.ico">
我将我的 favicon.ico 放到了根文件夹中(还放置了我的 index.html )。但是,出现以下错误:
http:localhost:8080 / favicon.ico(404)错误
如何解决此错误?