1👍
You have a bunch of options:
- Enable CORS in Django
- or set up images proxying/routing using web server (such as nginx)
- or write some Django view which will do images proxying/routing with Python (it’s relatively easy, but I’d not recommend it for production use)
The first option is probably the easiest one, you can do it by following a tutorias, for example this one.
Source:stackexchange.com