Skip to content

Commit fe344b6

Browse files
committed
docs: translate resource-preloading-apis section
1 parent 8faf37d commit fe344b6

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/content/reference/react-dom/index.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,24 @@ title: React DOM APIs
1919

2020
## Resource Preloading APIs {/*resource-preloading-apis*/}
2121

22-
These APIs can be used to make apps faster by pre-loading resources such as scripts, stylesheets, and fonts as soon as you know you need them, for example before navigating to another page where the resources will be used.
22+
다음 API는 스크립트, 스타일시트, 글꼴과 같은 리소스를 미리 로드하여 앱 속도를 개선하는데 사용할 수 있습니다. 예를 들어 특정 리소스가 사용될 다른 페이지로 이동하기 전에 리소스를 미리 불러올 수 있습니다.
2323

24-
[React-based frameworks](/learn/start-a-new-react-project) frequently handle resource loading for you, so you might not have to call these APIs yourself. Consult your framework's documentation for details.
24+
[React 기반 프레임워크](/learn/start-a-new-react-project)
25+
에서는 일반적으로 리소스 로딩을 자동으로 처리해주기 때문에 직접 API를 호출하지 않아도 됩니다. 자세한 내용은 사용하는 프레임워크의 문서를 참고하세요.
2526

2627
* [`preconnect`](/reference/react-dom/preconnect) lets you connect to a server you expect to request resources from, even if you don't know what resources you'll need yet.
27-
* [`prefetchDNS`](/reference/react-dom/prefetchDNS) lets you prefetch the IP address of a DNS domain name that you expect to connect to.
28+
를 사용하면 어떤 리소스가 필요한지 모르더라도 리소스를 요청할 것으로 예상되는 서버와 미리 연결할 수 있습니다.
29+
* * [`prefetchDNS`](/reference/react-dom/prefetchDNS) lets you prefetch the IP address of a DNS domain name that you expect to connect to.
30+
를 사용하면 접속할 가능성이 있는 DNS 도메인의 IP 주소를 미리 조회할 수 있습니다.
2831
* [`preinit`](/reference/react-dom/preinit) lets you fetch and evaluate an external script or fetch and insert a stylesheet.
32+
을 사용하면 외부 스크립트나 스타일시트를 미리 가져오고 실행할 수 있습니다.
2933
* [`preinitModule`](/reference/react-dom/preinitModule) lets you fetch and evaluate an ESM module.
34+
을 사용하면 외부 ESM 모듈을 미리 가져오고 평가(evaluate)할 수 있게 해줍니다.
3035
* [`preload`](/reference/react-dom/preload) lets you fetch a stylesheet, font, image, or external script that you expect to use.
36+
를 사용하면 스타일시트, 글꼴, 이미지 또는 외부 스크립트 같은 리소스를 미리 가져올 수 있습니다.
3137
* [`preloadModule`](/reference/react-dom/preloadModule) lets you fetch an ESM module that you expect to use.
32-
38+
을 사용하면 사용할 ESM 모듈을 미리 가져올 수 있습니다.
39+
*
3340
---
3441

3542
## 진입점 {/*entry-points*/}

0 commit comments

Comments
 (0)