diff --git a/packages/docs/src/content/docs/components/image/configuration.mdx b/packages/docs/src/content/docs/components/image/configuration.mdx
index c7c10b27..24211eea 100644
--- a/packages/docs/src/content/docs/components/image/configuration.mdx
+++ b/packages/docs/src/content/docs/components/image/configuration.mdx
@@ -495,6 +495,11 @@ a background, or an object, which can take the following options:
type: 'string',
example: () => cupcakes
,
},
+ {
+ prop: 'seed',
+ type: 'number',
+ example: () => (3
),
+ },
]}
/>
@@ -512,7 +517,8 @@ Customizing options:
fillBackground={{
crop: 'clpad',
gravity: 'south',
- prompt: 'cupcakes'
+ prompt: 'cupcakes',
+ seed: '3'
}}
```
diff --git a/packages/docs/src/content/docs/helpers/getcldimageurl/configuration.mdx b/packages/docs/src/content/docs/helpers/getcldimageurl/configuration.mdx
index ab5dc20a..93024237 100644
--- a/packages/docs/src/content/docs/helpers/getcldimageurl/configuration.mdx
+++ b/packages/docs/src/content/docs/helpers/getcldimageurl/configuration.mdx
@@ -466,6 +466,11 @@ a background, or an object, which can take the following options:
type: 'string',
example: () => cupcakes
,
},
+ {
+ prop: 'seed',
+ type: 'number',
+ example: () => (3
),
+ },
]}
/>
@@ -483,7 +488,8 @@ Customizing options:
fillBackground: {
crop: 'clpad',
gravity: 'south',
- prompt: 'cupcakes'
+ prompt: 'cupcakes',
+ seed: '3'
}
```