Skip to content

Commit

Permalink
i18n(ko-KR): update imports.mdx (#10478)
Browse files Browse the repository at this point in the history
Co-authored-by: Yan <[email protected]>
  • Loading branch information
jsparkdev and yanthomasdev authored Dec 20, 2024
1 parent 5b738a8 commit 16a09a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/ko/guides/imports.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ import logoUrl from '@assets/logo.png?url';

[Vite의 `import.meta.glob()`](https://ko.vite.dev/guide/features.html#glob-import)는 glob 패턴을 사용하여 일치하는 파일 경로를 찾아 한 번에 여러 파일을 가져오는 방법입니다.

`import.meta.glob()`은 가져오고 싶은 로컬 파일과 일치하는 상대적인 [glob 패턴](/ko/guides/imports/#glob-패턴)을 매개변수로 받습니다. 일치하는 각 파일의 내보내기가 포함된 배열을 반환합니다. 일치하는 모든 모듈을 미리 로드하려면 두 번째 인수로 `{ eager: true }`를 전달하세요:
`import.meta.glob()`은 가져오고 싶은 로컬 파일과 일치하는 상대적인 [glob 패턴](#glob-패턴)을 매개변수로 받습니다. 일치하는 각 파일의 내보내기가 포함된 배열을 반환합니다. 일치하는 모든 모듈을 미리 로드하려면 두 번째 인수로 `{ eager: true }`를 전달하세요:

```astro title="src/components/my-component.astro" {3,4}
---
Expand Down

0 comments on commit 16a09a4

Please sign in to comment.