这是我第一次在 Stack Overflow 上写作。
我正在尝试使用 babel 在本地使用 React,但是当我尝试在浏览器中执行它时,我得到了跨域请求被阻止的错误。
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Test React</title>
<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>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.js" ></script>
<script type ="text/babel" src="app.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>
我需要做什么 ?