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
4 changes: 4 additions & 0 deletions src/content/docs/ko/reference/error-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ import DontEditWarning from '~/components/DontEditWarning.astro'
- [**CannotDetermineWeightAndStyleFromFontFile**](/ko/reference/errors/cannot-determine-weight-and-style-from-font-file/)<br/>글꼴 파일에서 굵기와 스타일을 결정할 수 없습니다.
- [**CannotFetchFontFile**](/ko/reference/errors/cannot-fetch-font-file/)<br/>제공된 글꼴 파일을 가져올 수 없습니다.
- [**FontFamilyNotFound**](/ko/reference/errors/font-family-not-found/)<br/>글꼴 패밀리를 찾을 수 없습니다.
- [**FontFileUrlNotFound**](/ko/reference/errors/font-file-url-not-found/)<br/>글꼴 파일 URL을 찾을 수 없습니다.
- [**MissingGetFontFileRequestUrl**](/ko/reference/errors/missing-get-font-file-request-url/)<br/>온디맨드 렌더링 시 `experimental_getFontFileURL()`에 요청 URL이 필요합니다.
- [**UnavailableAstroGlobal**](/ko/reference/errors/unavailable-astro-global/)<br/>getStaticPaths()에서 Astro 전역을 사용할 수 없습니다.
- [**UnableToLoadLogger**](/ko/reference/errors/unable-to-load-logger/)<br/>로거를 로드할 수 없습니다.
- [**LoggerConfigurationNotSerializable**](/ko/reference/errors/logger-configuration-not-serializable/)<br/>로거 구성을 직렬화할 수 없습니다.

## CSS 오류

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> An error occurred while optimizing the SVG file with SVGO.
> An error occurred while optimizing the SVG file with the optimizer.
10 changes: 10 additions & 0 deletions src/content/docs/ko/reference/errors/font-file-url-not-found.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Font file URL not found
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> The URL passed to the `experimental_getFontFileURL()` function is invalid.

## 무엇이 잘못 되었나요?
폰트 파일 URL을 찾을 수 없습니다.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: The configuration of the logger is not serializable
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> The configuration of the logger is not serializable.

## 무엇이 잘못 되었나요?
로거의 구성을 직렬화할 수 없습니다.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: experimental_getFontFileURL() requires the request URL with on-demand rendering.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

## 무엇이 잘못 되었나요?
`experimental_getFontFileURL()`은 온디맨드 렌더링 시 요청 URL이 필요합니다.
10 changes: 10 additions & 0 deletions src/content/docs/ko/reference/errors/unable-to-load-logger.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Unable to load the logger.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> Couldn't load the logger at the given path.

## 무엇이 잘못 되었나요?
로거를 불러올 수 없습니다.
Loading