diff --git a/content/docs/cdn-links.md b/content/docs/cdn-links.md index e357811de..da6a602bb 100644 --- a/content/docs/cdn-links.md +++ b/content/docs/cdn-links.md @@ -6,14 +6,14 @@ prev: create-a-new-react-app.html next: release-channels.html --- -Both React and ReactDOM are available over a CDN. +Cả React và ReactDOM đều có thể dùng được qua một 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: +Những phiên bản trên đều chỉ áp dụng cho việc phát triển, chúng không phù hợp cho sản phẩm thật. Những phiên bản giảm tải và được tối ưu cho sản phẩm là: ```html @@ -21,17 +21,18 @@ The versions above are only meant for development, and are not suitable for prod ``` To load a specific version of `react` and `react-dom`, replace `17` with the version number. +Để chạy một phiên bản nhất định của `react` và `react-dom`, thay `17` bằng số phiên bản. -### Why the `crossorigin` Attribute? {#why-the-crossorigin-attribute} +### Tại sao là thuộc tính `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: +Nếu bạn dùng React từ một CDN, chúng tôi khuyến khích giữ nguyên thuộc tính [`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: +Chúng tôi cũng khuyến khích kiểm tra CDN bạn đang sử dụng có đang thiết lập `Access-Control-Allow-Origin: *` cho HTTP header: ![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. +Điều này sẽ tốt cho [error handling experience](/blog/2017/07/26/error-handling-in-react-16.html) trong React phiên bản 16 hoặc hơn. \ No newline at end of file