[Answer]-Django static files relative references Amazon S3

1👍

Maybe you should reference it differently since your css does not know {{ STATIC_URL }}. See how you defined static in your django settings.py file ( in my case I have it “/static/ ) and then reference it like that in the css file. Instead of {{STATIC_URL}}, make your reference the same as you made in your settings.py file (in my case that would be “/static/css…”)

👤Erika

Leave a comment