I just want to drop the favicon.ico in my staticfiles directory and then have it show up in my app.
favicon.ico
staticfiles
How can I accomplish this?
I ha
I tried the following settings in django 2.1.1
{% load static %}
STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/'` `.............
view live here