1。最好把favicon.ico放在index.html里面,放在同一个目录下2.在webpack配置文件里配置//在webpack.dev.conf.jsplugins里configurenewHtmlWebpackPlugin({filename:'index.html',template:'index.html',inject:true,favicon:'./favicon.ico'//addthisline}),在webpack.prod.conf中。js里面的plugins配置,否则favicon.iconewHtmlWebpackPlugin({filename:config.build.index,template:'index.html',inject:true,favicon:'./favicon.ico',//加上这个minify:{removeComments:true,collapseWhitespace:true,removeAttributeQuotes:true},chunksSortMode:'dependency'}),3.在index.html中引入代码
