Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/content/docs/ko/reference/modules/astro-assets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,33 @@ import type {

주어진 글꼴 패밀리와 관련된 글꼴 데이터를 설명합니다.

#### `FontData.src`

<p>

**타입:** `Array<{ url: string; format?: string; tech?: string }>`
</p>

주어진 글꼴 패밀리에 사용할 수 있는 글꼴 파일을 설명하는 객체 배열입니다. 각 객체는 `url`과 선택적으로 관련 [`format`](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@font-face/src#font_formats) 및 [`tech`](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@font-face/src#font_technologies)를 포함합니다.

#### `FontData.weight`

<p>

**타입:** `string`
</p>

글꼴 굵기를 지정합니다 (예: `400`, `600`).

#### `FontData.style`

<p>

**타입:** `string`
</p>

글꼴 스타일을 지정합니다 (예: `normal`, `italic`).

## `astro/assets`에서 가져오기

다음 도우미는 일반 assets 모듈에서 가져옵니다.
Expand Down
Loading