me

[python/error] Django – Refused to apply style from ‘…’ because its MIME type (‘text/html’) is not a supported stylesheet MIME type, and strict MIME checking is enabled.
2023.11.20 / , ,

Django - Refused to apply style from '...' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

Django – Refused to apply style from ‘…’ because its MIME type(‘text/html’) is not a supported stylesheet MIME type, and strict MIME checking is enabled. 이라고 에러가 갑자기 뜸.

크롬 개발자 도구(f12)를 열어보니 뭔가 빨간 경고 창이 가득히 보임. 분명 저번에는 나오지 않았던 css와 js 연결 에러가 가득… 분명 경로 같은 값은 잘 지정했는데….

알고 봤더니 세팅에 하나 빠져서 에러가 뜬 거.


해당 오류를 고치기 위해선 처음 만든 프로젝트의 urls.py 부분을 수정해야 함.

내 경우엔 Back/urls.py 를 수정해야 했음. 참고로 settings.py에 수정하면 안 되고 urls.py임.

보통 경로 등 세팅을 settings.py에 하다 보니 헷갈릴 수 있음.

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('web.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) 부분 추가 안 해준 것.


Django : https://www.djangoproject.com/

Django 설치 : [python/setting] 파이썬 – Django 설치 + 셋팅