Development/React
Styled Components ttf 폰트 적용 문제 해결
Styled Components에서 폰트를 적용하다 ttf 파일 폰트가 적용이 안되서 해결법을 검색해보고 적어보려합니다. import { createGlobalStyle } from "styled-components"; const GlobalStyle = createGlobalStyle` * { @font-face { font-family: 'GmarketSansMedium'; src: url('./fonts/GmarketSansTTFMedium.ttf') format('truetype'); font-weight: normal; font-style: normal; } } 5번째 줄 url은 public 폴더가 루트 경로입니다. format을 format('ttf')로 해도 반영이 안 됐는데 간단한 답은 ..