STATIC_URL = 'static/'
STATIC_ROOT = BASE_DIR / 'static'
In my templates:
{% load static %}
<link href="{% static "main.css" %}" rel="stylesheet">
<link rel="shortcut icon" href="{% static "logo3.gif" %}" />
I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right.
Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading
With all the best
Ewa