How do I set the django-oscar
setting OSCAR_MISSING_IMAGE_URL
when using S3BotoStorage as my backend? I am also using django compressor.
I have created a media
folder in my S3 bucket, and manually uploaded the image to the bucket subdirectory. My current setting is
OSCAR_MISSING_IMAGE_URL = MEDIA_URL + "/media/image_not_found.svg"
Where MEDIA_URL
is my S3 bucket URL.
Any way to get it to render the missing image correctly?