본문 바로가기
개발하는 '정'/C# (.NET)

.woff net::ERR_ABORTED 404 (Not Found)

by 주앤정_블로그 2023. 1. 11.

현상

 : asp 사이트에서는 잘 불러오는 :after, :before 태그 css가 .net 사이트에서는 적용되지 않으며,

   콘솔에서 아래와 같은 에러 발생

.woff net::ERR_ABORTED 404 (Not Found)

 

해결 : Web.config에 아래 태그를 추가한다.

  <system.webServer>
    <staticContent>
      <remove fileExtension=".woff"/>
      <remove fileExtension=".woff2" />
      <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
      <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
    </staticContent>
  </system.webServer>

 

끝.

반응형

댓글