[Answered ]-Django versioning static files at collectstatic

2👍

Using ManifestStaticFilesStorage could help.

👤vsd

0👍

One possibility is to use django-versioned-static:

This little apps helps to manage your staticfiles when you need to minify them for production use. Moreover, it is capable of versioning the assets so that whenever you need to alter the static files, users won’t be given old file from the browser cache.

👤Wtower

Leave a comment