diff options
Diffstat (limited to 'packages/astro/config.d.ts')
-rw-r--r-- | packages/astro/config.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/astro/config.d.ts b/packages/astro/config.d.ts index 33aebd4f7..cdd38c4ea 100644 --- a/packages/astro/config.d.ts +++ b/packages/astro/config.d.ts @@ -24,3 +24,10 @@ export function sharpImageService(): ImageServiceConfig; * Return the configuration needed to use the Squoosh-based image service */ export function squooshImageService(): ImageServiceConfig; + +/** + * Return the configuration needed to use the passthrough image service. This image services does not perform + * any image transformations, and is mainly useful when your platform does not support other image services, or you are + * not using Astro's built-in image processing. + */ +export function passthroughImageService(): ImageServiceConfig; |