I have generated an app using slc loopback command. So the generated express webapp has its strongloop favicon. How can I change the favicon?
I am using this in server.js
app.use(loopback.favicon(path.resolve(__dirname, '../client/favicon.ico')));
I also tried with html link tag, but still default is loading.
What am I doing wrong?