게이츠비에서 셀프 트랜잭션 글씨체를 사용하는 4단계
2211 단어 reactcssjavascript
1 - 글꼴 파일을 넣습니다
static/fonts/
.2 - 같은 디렉터리에
fonts.css
를 만들고 css 글꼴 규칙을 추가합니다.내 것은 이렇게 보인다. @font-face {
font-family: "Lato";
src: url("Lato-Regular.otf");
}
@font-face {
font-family: "Dank Mono";
src: url("DankMono-Regular.otf");
}
3 npm나 실을 첨가gatsby-plugin-web-font-loader
하는 것을 잊지 마세요--save
!4-플러그 인을 플러그 인 어레이에 추가
gatsby-config.js
합니다.이것은 나의 것이다. {
resolve: "gatsby-plugin-web-font-loader",
options: {
custom: {
families: ["Lato, Dank Mono"],
urls: ["/fonts/fonts.css"],
},
},
},
이렇게!
Reference
이 문제에 관하여(게이츠비에서 셀프 트랜잭션 글씨체를 사용하는 4단계), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/iangloude/4-steps-to-self-hosted-fonts-in-gatsby-aj2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)