Changing Datahub Logo and Favicon Settings in React_App: Guide for Datahub Login Page Logo Update

Original Slack Thread

Hi All,

We have successfully changed the logo and favicon for Datahub with gms updated for REACT_APP_LOGO_URL and REACT_APP_FAVICON_URL for after login
We also need the logo changed for the Datahub login page, how can that be achieved please?

<@U03BEML16LB> might help you

hey there! unfortunately we don’t support that being easily configured as of right now. Since we retrieve the logos that you configured through a call to the backend that requires you to be logged in, we have to settle with the default logo for now. The way to change it would be as things are now would be to update index.html inside of datahub-web-react/public/ and edit the html line &lt;link rel="icon" href="%PUBLIC_URL%/favicon.ico" /&gt; to point to a new image file you also put into the datahub-web-react/public/ folder. so if you have a new image example.png then the html line becomes &lt;link rel="icon" href="%PUBLIC_URL%/example.png" /&gt;

but unfortunately that means making changes to source code and requires you forking the repo

Thanks <@U03BEML16LB> for the explanation
Thanks <@U0348BYAS56>