I'm using STATICFILES_STORAGE = 'offsite_storage.storages.CachedS3FilesStorage'
to store all my static files on S3. On my localhost it's trying to load assets using staticfiles
from my S3 location without the hashed name. But my STATICFILES_STORAGE provider (django-offsite-storage) only uploads the hashed name version to S3. I want to keep DEBUG=True on my local machine, but I want my S3 assets to load the hashed filename version.
Is there anyway to do this?