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
12 changes: 11 additions & 1 deletion src/content/docs/en/reference/modules/astro-assets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ Describes the [properties of a remote image](#image-). This ensures that when [`

<p>

**Type:** `{ src: Array<{ url: string; format?: string; tech?: string }>; weight?: string; style?: string; }`<br />
**Type:** `{ src: Array<{ url: string; format?: string; tech?: string }>; weight?: string; style?: string; subset?: string; }`<br />
<Since v="6.0.0" />
</p>

Expand Down Expand Up @@ -821,6 +821,16 @@ Specifies the font weight (e.g. `400`, `600`).

Specifies the font style (e.g. `normal`, `italic`).

#### `FontData.subset`

<p>

**Type:** `string`
<Since v="7.0.0" />
</p>

Specifies the font subset (e.g. `latin`, `cyrillic`).

## Imports from `astro/assets`

The following helpers are imported from the regular assets module:
Expand Down
Loading