diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 08226ff5e0..b390652547 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -379,7 +379,7 @@ type ServerConfig = { * @name server.open * @type {string | boolean} * @default `false` - * @version 2.1.8 + * @version 4.1.0 * @description * Controls whether the dev server should open in your browser window on startup. * @@ -1114,6 +1114,19 @@ export interface AstroUserConfig { * ``` */ service?: ImageServiceConfig; + /** + * @docs + * @name image.service.config.limitInputPixels + * @kind h4 + * @type {boolean} + * @default `true` + * @version 4.1.0 + * @description + * + * Whether or not to limit the size of images that the Sharp image service will process. + * + * Set `false` to bypass the default image size limit for the Sharp image service and process large images. + */ /** * @docs