[Answered ]-Django static image not loading on setting debug=False

1👍

This is wrong:

<img src="/static/b_icon.png" 

This is right:

{% load static %}

<img src="{% static 'b_icon.png' %}

Just take a moment to read carefully Managing static files, Serving static files during development docs and follow all steps.

Leave a comment