[Answered ]-Django is not serving staticfiles

1👍

Solved it by removing

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

and replacing it with

STATICFILES_DIRS = (os.path.join(BASE_DIR, "staticfiles"),)
👤David

Leave a comment