Django is displaying a 200 response code for every static file that has been asked for yet the page isn't styled.Some of the static files requested and the response code Can anyone tell what the problem is here?
The page isn't looking like it's supposed to be
The lines where I am including static files static files
My static urls in settings.py STATIC_URL = '/static/'
STATIC_ROOT = 'static'
MEDIA_URL = '/media/'
And in urls.py
urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root = settings.STATIC_ROOT)
The weird part about it is that this error came out of nowhere. It was working fine yesterday and today it won't style the pages. I haven't edited any code because of which this might happen.