homarr
homarr copied to clipboard
Custom Favicon does not rednder
Environment
Docker
Version
No response
Describe the problem
Favicon does not change with any link or even local source.
Per Manicraft1001 on Discord: The BoardHeadOverride component does in fact not override the CommonHead compontent.
Logs
No response
Context
No response
Please tick the boxes
- [X] I confirm that I attached the proper logs
- [X] I've read the docs
- [X] I've checked for duplicate issues
- [X] I've tried to debug myself
yes.i also have the same issue. I tried to change the icon which in imgs files. but it also doesn't work. The files which in imgs folder cannot be changed.
same issue
same issue for me too
up
Phew! I thought I was doing something wrong. Glad it's an actual bug! Other than this, Homarr is AWESOME!
I have tried local and remote images, same issue. Favicon does not change when setting to custom icon.
I accomplished this via a work around for anyone that cares. On unraid, I'm able to easily access the app data, so I put my custom favicon icons (favicon.png, favicon.svg, favicon-squared.png) in the icons folder. Any folder that is accessible from within the docker container would work fine. I'm sure uploading icons the traditional way would work too.
Then I just moved the files to the imgs folder via docker exec, then reboot my container and it worked. Probably have to do this each time the container gets an update until this issue is fixed. You will likely have to clear your cache on your browser too.
The favicons are stored in a folder in the docker container at this path: public/imgs/favicon
.
This is the basic form of docker exec:
docker exec my_container mv usr/src/app/old_folder/file.txt usr/src/app/new_folder/
docker exec homarr mv public/icons/favicon.png public/imgs/favicon
docker exec homarr mv public/icons/favicon-squared.png public/imgs/favicon
docker exec homarr mv public/icons/favicon.svg public/imgs/favicon
I accomplished this via a work around for anyone that cares. On unraid, I'm able to easily access the app data, so I put my custom favicon icons (favicon.png, favicon.svg, favicon-squared.png) in the icons folder. Any folder that is accessible from within the docker container would work fine. I'm sure uploading icons the traditional way would work too.
Then I just moved the files to the imgs folder via docker exec, then reboot my container and it worked. Probably have to do this each time the container gets an update until this issue is fixed. You will likely have to clear your cache on your browser too.
The favicons are stored in a folder in the docker container at this path:
public/imgs/favicon
.This is the basic form of docker exec:
docker exec my_container mv usr/src/app/old_folder/file.txt usr/src/app/new_folder/
docker exec homarr mv public/icons/favicon.png public/imgs/favicon docker exec homarr mv public/icons/favicon-squared.png public/imgs/favicon docker exec homarr mv public/icons/favicon.svg public/imgs/favicon
I tried this myself before and I couldn't get it to work reliably. I can access the favicon, but it still shows the wrong one. I've even tried different computers and browsers.
Bump. Can't get this to work
Will be released in the next version! You can already test if the behavior is fixed using the dev
image ! Feel free to ping me if it is not fixed on your end ;)
Up