폰트 적용시 희안하게 woff2 만 Failed to decode downloaded font 라는
경고 문구가 아래처럼 크롬 브라우저에서 콘솔창에 떳다.
Failed to decode downloaded font: http://localhost:3000/fonts/Apple/AppleSDGothicNeoB.woff2
@font-face {
font-family: 'Apple SD Gothic Neo';
font-style: bold;
font-weight: 600;
src: url('/fonts/Apple/AppleSDGothicNeoB.woff2') format('font-woff2'),
url('/fonts/Apple/AppleSDGothicNeoB.woff') format('woff'),
url('/fonts/Apple/AppleSDGothicNeoB.otf') format('truetype');
}
글꼴 성명 의 format 형식을 format ('woff2')에서 format ('font-woff2') 로 변경한다!