[Answer]-Django static CSS for page not being found (development)

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'),
)

Leave a comment