How to change favicon in Strapi. the icon I have converted but can't change the default strapi logo. I have changed the other logos from settings
src/admin/extensions/favicon.ico
src/admin/app.js
import favicon from './extensions/favicon.ico';
const config = {
head: {
favicon: favicon,
},
};
const bootstrap = app => {
console.log('bootstrap', app);
};
export default {
config,
bootstrap,
};
And all set!