Change logo.svg & favicon

I´m trying to change the logo.svg, i made my build with the zammad.gir version, because with the docker version i couldn’t access the images so directly, however when i change it directly from my local folder abd create the image from there with docker it doesn’t make the change either, does anyone know how to change it or what would be the fastest way to change this logo

2 Likes

Hi,
if you change svg files in your zammad directory, then you will need to recompile your icon set. There is a compiled version with all svgs in public/assets/images/icons.svg.

I usually use this command to regenerate the icons:

zammad> cd /opt/zammad
zammad> cd public/assets/images && npm install && npx gulp build

In general it might also makes sense to have a development instance to include the generated files in a package (Packages Tutorial) and update it every minor version because else new icons will not be included.

1 Like