summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Risu <79110363+risu729@users.noreply.github.com> 2023-11-13 19:15:02 +0900
committerGravatar GitHub <noreply@github.com> 2023-11-13 11:15:02 +0100
commita7f8123ba45359e3d4db71089c6db5d50ac2088c (patch)
tree4855effd249442af79452adef380eff8484e5bf5
parentc5dc8f2ec9c8c1bbbffabed9eeb12d151aefb81e (diff)
downloadastro-a7f8123ba45359e3d4db71089c6db5d50ac2088c.tar.gz
astro-a7f8123ba45359e3d4db71089c6db5d50ac2088c.tar.zst
astro-a7f8123ba45359e3d4db71089c6db5d50ac2088c.zip
chore(config.d.ts): Update comment (#9076)
-rw-r--r--packages/astro/config.d.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/astro/config.d.ts b/packages/astro/config.d.ts
index cdd38c4ea..a12f862d6 100644
--- a/packages/astro/config.d.ts
+++ b/packages/astro/config.d.ts
@@ -16,12 +16,12 @@ export function getViteConfig(config: ViteUserConfig): ViteUserConfigFn;
/**
* Return the configuration needed to use the Sharp-based image service
- * See: https://docs.astro.build/en/guides/assets/#using-sharp
*/
export function sharpImageService(): ImageServiceConfig;
/**
* Return the configuration needed to use the Squoosh-based image service
+ * See: https://docs.astro.build/en/guides/images/#configure-squoosh
*/
export function squooshImageService(): ImageServiceConfig;
@@ -29,5 +29,6 @@ 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.
+ * See: https://docs.astro.build/en/guides/images/#configure-no-op-passthrough-service
*/
export function passthroughImageService(): ImageServiceConfig;