I'm running Jenkins behind nginx on my server. I have an app built in NodeJS and it uses the html-webpack-plugin. I've set the favicon and it displays the correct image locally but on the server it does not update the Jenkins logo favicon. Here's how I set it:
new HtmlWebpackPlugin({
template: 'myTpl.html',
...
...
favicon: 'myImages/logo.png'
})
I need to get rid of the Jenkins logo favicon and I can not find anything related to this in the Jenkins dashboard. Anybody got any tips?
Thanks