mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-26 07:25:20 +00:00
38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
---
|
|
id: cdn-links
|
|
title: CDN Links
|
|
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.
|
|
|
|
```html
|
|
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
|
|
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
|
|
```
|
|
|
|
The versions above are only meant for development, and are not suitable for production. Minified and optimized production versions of React are available at:
|
|
|
|
```html
|
|
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
|
|
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
|
|
```
|
|
|
|
To load a specific version of `react` and `react-dom`, replace `16` with the version number.
|
|
|
|
### Why the `crossorigin` Attribute? {#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:
|
|
|
|
```html
|
|
<script crossorigin src="..."></script>
|
|
```
|
|
|
|
We also recommend to verify that the CDN you are using sets the `Access-Control-Allow-Origin: *` HTTP header:
|
|
|
|

|
|
|
|
This enables a better [error handling experience](/blog/2017/07/26/error-handling-in-react-16.html) in React 16 and later.
|