I don't understand why they want us to use absolute paths when we try to add static directories in django. I mean, these two work exactly the same:
STATICFILES_DIRS = (
'static',
)
as this :
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
simply keeping it as 'static'
, keeps things simple. So, why absolute path? I want a new answer to this, because there are older answers, but those are for quite old versions of django.