I'm receiving this error in the console:
Refused to apply style from 'http://127.0.0.1:8000/faq/owl-carousel/owl.carousel.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
My friend told me to write mimetypes.add_type(“text/css”, “.css”, True)
into settings.py but i recieved this message: File "/Users/fiennesharris/anonima_sandbox/anonima/settingsDEV.py", line 14 import mimetypes ^ IndentationError: unexpected indent
I'm using Django so how can I fix this? much appreciated!
/faq/owl-carousel/owl.carousel.css
looks like it might not be a static url and not handled by the static files handler – Iain Shelvington