How to set custom favicon in Express?

前端 未结 14 1917
星月不相逢
星月不相逢 2020-12-12 12:49

I recently started working in Node.js and in the app.js file there is this line:

app.use(express.favicon());

Now, how do I set up my own cu

14条回答
  •  无人及你
    2020-12-12 13:16

    app.use(express.favicon(__dirname + '/public/images/favicon.ico')); 
    

    I had it working locally without the __dirname + but couldn't get it working on my deployed server.

提交回复
热议问题