Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/

## 무엇이 잘못되었나요?

`type: 'data'`의 컬렉션 항목은 유효한 JSON (`.json` 항목의 경우) 또는 YAML (`.yaml` 항목의 경우)이 포함된 객체를 반환해야 합니다.
`type: 'data'`의 컬렉션 항목은 유효한 JSON (`.json` 항목의 경우), YAML (`.yaml` 항목의 경우) 또는 TOML (`.toml` 항목의 경우)이 포함된 객체를 반환해야 합니다.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/
> **FileParserNotFound**: No parser was found for 'FILE_NAME'. Pass a parser function (e.g. `parser: csv`) to the `file` loader.

## 무엇이 잘못되었나요?
`file` 로더가 사용할 구문 분석기를 결정할 수 없습니다. 파일의 유형으로 컬렉션을 만들려면 사용자 정의 구문 분석기 (예: `toml.parse` 또는 `csv-parse`)를 제공하세요.
`file` 로더가 사용할 구문 분석기를 결정할 수 없습니다. 파일의 유형으로 컬렉션을 만들려면 사용자 정의 구문 분석기 (예: `csv-parse`)를 제공하세요.

**더 보기:**
- [Passing a `parser` to the `file` loader](/ko/guides/content-collections/#parser-함수)