0

My localhost web page hadn't show favicon, and also not found in Network request:

enter image description here enter image description here

The webpack-dev-server host the web page including index.html, favicon and other files:

enter image description here

The favicon.ico can be accessed from http://localhost:8080/favicon.ico in browser.

junlin
  • 1,435
  • 21
  • 35

2 Answers2

1

It's cache problem. I configured other port in webpack devServer and works. Thanks @Hardik's

junlin
  • 1,435
  • 21
  • 35
0

check webpack setting for icon

 {
    test: /\.(ico)$/,
    use: 'file-loader?name=assets/[name].[ext]'
  }
Shiv Kumar Baghel
  • 2,366
  • 5
  • 16
  • 33