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,835
  • 2
  • 25
  • 38

2 Answers2

2

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

junlin
  • 1,835
  • 2
  • 25
  • 38
1

check webpack setting for icon

 {
    test: /\.(ico)$/,
    use: 'file-loader?name=assets/[name].[ext]'
  }
Shiv Kumar Baghel
  • 2,464
  • 6
  • 18
  • 34