Reputation: 2035
My localhost web page hadn't show favicon, and also not found in Network request:
The webpack-dev-server host the web page including index.html, favicon and other files:
The favicon.ico can be accessed from http://localhost:8080/favicon.ico
in browser.
Upvotes: 0
Views: 1555
Reputation: 2035
It's cache problem. I configured other port in webpack devServer and works. Thanks @Hardik's
Upvotes: 2
Reputation: 2480
check webpack
setting for icon
{
test: /\.(ico)$/,
use: 'file-loader?name=assets/[name].[ext]'
}
Upvotes: 1