In my Django project I have a static folder in the root of the project (near manage.py), so in settings.py, in order to find this static files I have:
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static'),]
How do I have to configure STATIC_ROOT? Now I think about:
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
But when I run collectstatic it fails, static files are loaded but not in the admin site.
How can I solve this issue?