I found out that these are the ones I need to map, although when I mapped only favicon-128.png
it worked as well, so not sure completely but to some extends I know that these are the ones we need to map:
But IDK exactly what /usr/local/fusionauth/fusionauth-app/web/static/favicon.png is being used for. Anyhow, I've decided to ignore it for the time being and later (if something happened) maybe will change my mind 😄.
Dockerfile for those who might be also interested in my FusionAuth version FROM fusionauth/fusionauth-app:1.45.3 USER root # Install curl RUN apt-get update && \ apt-get install -y curl && \ rm -rf /var/lib/apt/lists/* USER fusionauth COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-128.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-16x16.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-32x32.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-96x96.png For more details look at my repo & give it a ⭐ if you found it useful.