diff --git a/src/content/docs/ko/reference/configuration-reference.mdx b/src/content/docs/ko/reference/configuration-reference.mdx index 0f86115efc0e6..29807ff314917 100644 --- a/src/content/docs/ko/reference/configuration-reference.mdx +++ b/src/content/docs/ko/reference/configuration-reference.mdx @@ -564,7 +564,7 @@ prefetch: { - `'tap'`: 링크를 클릭하기 직전에 미리 가져옵니다. - `'hover'`: 링크 위로 마우스를 가져가거나 링크에 초점을 맞추면 미리 가져옵니다. (기본값) - `'viewport'`: 링크가 뷰포트에 들어갈 때 미리 가져옵니다. -- `'load'`: 페이지가 로드된 후에 페이지의 모든 링크를 미리 가져오세요.。 +- `'load'`: 페이지가 로드된 후 페이지의 모든 링크를 미리 가져옵니다. 속성에 값을 설정하여 이 기본값을 무시하고 개별 링크에 대해 다른 전략을 선택할 수 있습니다. @@ -623,6 +623,25 @@ prefetch: { } ``` +### server.open + +
+
+**타입:** `string | boolean`
+**기본값:** `false`
+
@@ -676,12 +695,30 @@ Astro의 자산 지원에 사용되는 이미지 서비스를 설정합니다. ```js { image: { - // 예: Sharp 기반 이미지 서비스 활성화 - service: { entrypoint: 'astro/assets/services/sharp' }, + // 예: 사용자 정의 구성으로 Sharp 기반 이미지 서비스 활성화 + service: { + entrypoint: 'astro/assets/services/sharp', + config: { + limitInputPixels: false, + }, + }, }, } ``` +#### image.service.config.limitInputPixels + +
+
+**타입:** `boolean`
+**기본값:** `true`
+