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
1 change: 1 addition & 0 deletions src/content/docs/ko/reference/error-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ import DontEditWarning from '~/components/DontEditWarning.astro'
- [**UnsupportedImageFormat**](/ko/reference/errors/unsupported-image-format/)<br/>지원되지 않는 이미지 형식
- [**UnsupportedImageConversion**](/ko/reference/errors/unsupported-image-conversion/)<br/>지원되지 않는 이미지 변환
- [**PrerenderDynamicEndpointPathCollide**](/ko/reference/errors/prerender-dynamic-endpoint-path-collide/)<br/>사전 렌더링된 동적 엔드포인트에 경로 충돌이 있습니다.
- [**PrerenderRouteConflict**](/ko/reference/errors/prerender-route-conflict/)<br/>사전 렌더링된 라우트가 다른 라우트와 동일한 경로를 생성합니다.
- [**ExpectedImage**](/ko/reference/errors/expected-image/)<br/>src는 이미지일 것으로 예상됩니다.
- [**ExpectedImageOptions**](/ko/reference/errors/expected-image-options/)<br/>예상되는 이미지 옵션.
- [**ExpectedNotESMImage**](/ko/reference/errors/expected-not-esmimage/)<br/>ESM에서 가져온 이미지가 아닌 예상되는 이미지 옵션.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> No data was found for the family passed to the Font component.
> No data was found for the `cssVariable` passed to the `<Font />` component or to the `getFontData()` function.

## 무엇이 잘못 되었나요?
글꼴 패밀리를 찾을 수 없습니다.
14 changes: 14 additions & 0 deletions src/content/docs/ko/reference/errors/prerender-route-conflict.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: Prerendered route generates the same path as another route.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

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

두 개의 사전 렌더링된 라우트가 동일한 경로를 생성하여 충돌이 발생합니다.
정적 경로는 하나의 라우트에 의해서만 생성될 수 있습니다.

**더 보기:**
- [`getStaticPaths()`](/ko/reference/routing-reference/#getstaticpaths)
- [`params`](/ko/reference/api-reference/#params)