diff --git a/content/docs/cdn-links.md b/content/docs/cdn-links.md index 73e3e8171..0fb1083f2 100644 --- a/content/docs/cdn-links.md +++ b/content/docs/cdn-links.md @@ -1,37 +1,37 @@ --- id: cdn-links -title: CDN Links +title: Посилання на CDN permalink: docs/cdn-links.html prev: create-a-new-react-app.html next: hello-world.html --- -Both React and ReactDOM are available over a CDN. +Як React, так і ReactDOM доступні через CDN. ```html ``` -The versions above are only meant for development, and are not suitable for production. Minified and optimized production versions of React are available at: +Зазначені вище версії призначені тільки при розробці програми, але не підходять для використання в продакшн-оточенні. Мініфіковані та оптимізовані для продакшн версії React перераховані нижче: ```html ``` -To load a specific version of `react` and `react-dom`, replace `16` with the version number. +Щоб завантажити конкретну версію `react` та `react-dom`, замініть `16` на номер версії, яка вам потрібна. -### Why the `crossorigin` Attribute? {#why-the-crossorigin-attribute} +### Для чого атрибут `crossorigin`? {#why-the-crossorigin-attribute} -If you serve React from a CDN, we recommend to keep the [`crossorigin`](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes) attribute set: +Якщо ви завантажуєте React з CDN, ми рекомендуємо вам скористатися атрибутом [`crossorigin`](https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes): ```html ``` -We also recommend to verify that the CDN you are using sets the `Access-Control-Allow-Origin: *` HTTP header: +Також бажано перевірити, що використаний сервіс CDN встановлює HTTP-заголовок `Access-Control-Allow-Origin: *`: ![Access-Control-Allow-Origin: *](../images/docs/cdn-cors-header.png) -This enables a better [error handling experience](/blog/2017/07/26/error-handling-in-react-16.html) in React 16 and later. +Така практика дозволить покращити [обробку помилок](/blog/2017/07/26/error-handling-in-react-16.html) в React 16 і новіших версіях.