4
.woff2 글꼴에 적합한 MIME 유형
오늘 Font Awesome 패키지를 4.3.0으로 업데이트 하고 woff2 글꼴이 추가 되었음을 알았습니다 . 이 파일은 CSS로 연결되어 있으므로 woff2 파일을 올바르게 제공하도록 nginx를 구성해야합니다. 현재 글꼴에 대한 nginx 구성 에이 블록이 있습니다. location ~* \.(otf|eot|woff|ttf)$ { types {font/opentype otf;} types {application/vnd.ms-fontobject eot;} types {font/truetype ttf;} types {application/font-woff woff;} } woff2 …
279
fonts
mime-types
woff
woff2