From c21b8b90c223dc113cd4824d3787bb9e2be52932 Mon Sep 17 00:00:00 2001 From: Junseong Park <39112954+jsparkdev@users.noreply.github.com> Date: Sat, 28 Dec 2024 15:05:39 +0900 Subject: [PATCH] i18n(ko-KR): update `v5.mdx` --- src/content/docs/ko/guides/upgrade-to/v5.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/ko/guides/upgrade-to/v5.mdx b/src/content/docs/ko/guides/upgrade-to/v5.mdx index daab2300144bb..7c9ed21e157cc 100644 --- a/src/content/docs/ko/guides/upgrade-to/v5.mdx +++ b/src/content/docs/ko/guides/upgrade-to/v5.mdx @@ -121,7 +121,7 @@ Astro 5.0은 여러 성능 향상과 추가 기능을 제공하는 콘텐츠 레 1. **콘텐츠 설정 파일 이동하기**. 이 파일은 더 이상 `src/content/` 폴더에 있지 않습니다. 이제 이 파일은 `src/content.config.ts`에 위치해야 합니다. -2. **컬렉션 정의 수정하기**. 업데이트된 컬렉션에는 `loader`가 필요하며, 컬렉션 `type`을 선택하는 옵션은 더 이상 사용할 수 없습니다. +2. **컬렉션 정의 수정하기**. 업데이트된 컬렉션은 `loader`가 필요하며, 이는 컬렉션이 위치한 폴더인 `base`와 컬렉션 항목 파일들의 이름과 확장자를 매칭할 `pattern`을 지정합니다. (아래 예시를 상황에 맞게 수정해야 할 수 있습니다. [globster.xyz](https://globster.xyz/)에서 glob 패턴을 테스트해볼 수 있습니다.) 컬렉션을 선택하기 위한 `type` 옵션은 더 이상 제공되지 않습니다. ```ts ins={3,8} del={7} // src/content.config.ts @@ -131,7 +131,7 @@ Astro 5.0은 여러 성능 향상과 추가 기능을 제공하는 콘텐츠 레 const blog = defineCollection({ // 콘텐츠 레이어에서는 더 이상 `type`을 정의하지 않습니다 type: 'content', - loader: glob({ pattern: '**/[^_]*.md', base: "./src/data/blog" }), + loader: glob({ pattern: '**/[^_]*.{md,mdx}', base: "./src/data/blog" }), schema: z.object({ title: z.string(), description: z.string(),