Skip to content

가변 다이나믹 서브셋 폰트의 preload를 어떻게 하면 좋을까요? #163

Answered by orioncactus
cyhKatchers asked this question in Q&A
Discussion options

You must be logged in to vote

말씀해주신 내용으로 보면 Pretendard로 쓰시는 것을 추천드리며, 웹에서 가장 빠르게 Pretendard를 불러오게 하려면 가변 글꼴에 글꼴을 92개 조각으로 나눠 선별적으로 다운로드할 수 있는 가변 다이나믹 서브셋을 쓰시는 것을 추천드립니다. 원티드 같은 경우에는 html head에 다음과 같이 사용하고 있습니다:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable-dynamic-subset.css">
<link rel="preload" as="style" crossorigin="anonymous" href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable-dynamic-subset.css">
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin="anonymous">

이어서 뱅크샐러드에서 지연을 최소화해 Pretendard를 표시하는 방법을 안내하는 게시글을 확인해보셔도 좋을 듯합니다: https://blog.banksalad.com/tech/font-preload-…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by orioncactus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #161 on October 10, 2023 14:35.