mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-20 07:00:24 +00:00
While this change means users can no longer specify their own filenames, changing a property of a processor, for example, will now result in a new image. This solves a lot of the previous invalidation issues.
6 lines
175 B
Python
6 lines
175 B
Python
from appconf import AppConf
|
|
|
|
|
|
class ImageKitConf(AppConf):
|
|
DEFAULT_IMAGE_CACHE_BACKEND = 'imagekit.imagecache.PessimisticImageCacheBackend'
|
|
CACHE_DIR = 'CACHE/images'
|