[Answer]-Staticfiles loaded the wrong path – app_name/static/

1👍

✅

Restarting the server after changing setting.py file has helped me. In my case it was: supervisorctl restart [process_name]

0👍

Do you have a STATICFILES_STORAGE setting in settings.py?

If not, try changing {% load staticfiles %} to {% load static %} in your index.html file. I had a similar problem once.

Leave a comment