[ its mime type ('text/html') is not a supported stylesheet mime type, and strict mime checking is enabled. ]
📌 현상
html 파일을 css 파일과 연결하고 css 파일엔 import로 다른 css를 불러오도록 연결했는데
css 파일이 전혀 적용되지 않았다.
📌 원인
css 파일 경로가 제대로 지정되지 않아서 발생한 에러였다.
👉 해결
html 파일에서 css 파일 경로를 수정하여 제대로 연결했다.
절대 경로로 설정하려니까 안돼서 결국 상대 경로로 지정했다.
참고