CSS not loading wrong MIME type Django [duplicate]

Adding following snippet into settings.py file may fix your problem:

import mimetypes
mimetypes.add_type("text/css", ".css", True)

Leave a Comment