I've a django website set up using django-compressor + memcached.
Not sure when it started, but I'm finding new css and js files in .../collect_static/CACHE/css
and .../collect_static/CACHE/js
every minute, like output.2fde5b60eff0.css
.
I use django.contrib.staticfiles.storage.ManifestStaticFilesStorage
.
I have no clue if this is normal, or happening because of some misconfiguration. But in every few days, I need to clean the server because of this.
Any suggestions what is going on here?
Update: It seems to be happening because of template variables inside css and js code, as per this answer, but as I've a lot of such variables, I still don't know how to fix this.