Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(ko-KR): update v5.mdx #10546

Merged
merged 2 commits into from
Dec 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/ko/guides/upgrade-to/v5.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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(),
Expand Down
Loading