This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/ref/astro-imagetools/docs/src/components/ConfigOptions/fallbackFormat.astro
2025-03-07 14:59:06 +01:00

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",
},
]}
/>