mirror of
https://github.com/zulip/zulip.git
synced 2025-10-30 19:43:47 +00:00
None of the file types here are actually processed by our static asset pipeline in a way that would result in the hash-named versions of the files (stored in staticfiles.json) being accessed. (If they were, we'd be using something like `render_bundle` to access their paths). So, we should not be generating/shipping these hash-named versions of image, audio, and locale files. This change decreases the size of a Zulip release tarball from 153MB to 93MB, by removing all of the duplicated copies of various asset files. This may also help with #10038, but I'm not marking it as completing that issue yet, because part of #10038 is that the non-hash-named image files in prod-static/generated/emoji do not seem to have been properly overwritten on upgrade, and it's unclear why. Fixes #5971.