[Answered ]-How can i use firebase cloud storage to handle static files

1👍

You have a bunch of options:

  1. Enable CORS in Django
  2. or set up images proxying/routing using web server (such as nginx)
  3. 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.

Leave a comment