0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[docs] update config-reference for 4.1.0 docs release (#9595)

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
This commit is contained in:
Sarah Rainsberger 2024-01-03 21:37:52 -04:00 committed by GitHub
parent fbc2697653
commit de15b4a891
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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