From a7f8123ba45359e3d4db71089c6db5d50ac2088c Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:15:02 +0900 Subject: [PATCH] chore(config.d.ts): Update comment (#9076) --- packages/astro/config.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/astro/config.d.ts b/packages/astro/config.d.ts index cdd38c4ea147..a12f862d651b 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;