Resource interpreted as Stylesheet but transferred with MIME type text/html : "~.css"

[원인]

css 파일이 text/html Content-Type 으로 처리되어 나타나는 현상

 

[관련 자료]

1. stackoverflow.com/questions/22631158/resource-interpreted-as-stylesheet-but-transferred-with-mime-type-text-html-see 

2. www.mins01.com/mh/tech/read/877?ct=&tq=tt&q=css+mime

 

[해결방법]

컨테이너 webcommon.xml 의 확장자별 MIME 타입을 지정한다.

1
2
3
4
<mime-mapping>
  <extension>css</extension>
  <mime-type>text/css</mime-type>
</mime-mapping>
cs

참고:

czar.tistory.com/627

 

 

반응형

+ Recent posts