25 lines
455 B
Plaintext
25 lines
455 B
Plaintext
<!-- prettier-ignore -->
|
|
<Markdown is:raw>
|
|
### `fallbackFormat`
|
|
|
|
**Type:** `format`
|
|
|
|
**Default:** _The format of the source image_
|
|
|
|
The format the browser will fallback to if the other formats are not supported.
|
|
|
|
**Code example:**
|
|
</Markdown>
|
|
|
|
<CodeExample
|
|
{...Astro.props}
|
|
values={[
|
|
{
|
|
src: "https://picsum.photos/1024/768",
|
|
alt: "A random image",
|
|
format: `["webp", "jpg"]`,
|
|
fallbackFormat: "png",
|
|
},
|
|
]}
|
|
/>
|