1👍
my answer is based on your project directory layout.
remove
STATIC_ROOT = 'staticfiles'
and change STATICFILES_DIRS like this:
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
Source:stackexchange.com
1👍
my answer is based on your project directory layout.
remove
STATIC_ROOT = 'staticfiles'
and change STATICFILES_DIRS like this:
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)