Parcel 和 React 18 项目设置错误。 @parcel/transformer-js:意外的标记 `)`。预期如此,导入,异步,功能

问题描述 投票:0回答:1

服务器运行在http://localhost:1234 🚨 构建失败。

@parcel/transformer-js:意外的令牌

)
。需要 this、import、async、function、[ 表示数组文字,{ 表示对象文字,@ 表示 装饰器、函数、类、null、true、false、数字、bigint、字符串、正则表达式、` 用于模板文字、( 或标识符

/home/sizzions/Desktop/Projects/web 应用程序/WenApp/src/index.js:5:19

4 | const root = createRoot(容器); // createRoot(container!) 如果你使用 TypeScript

5 | root.render(/); | ^ Parcel error

`import { createRoot } from 'react-dom/client';
 import App from './App';
   const container = document.getElementById('app');

   const root = createRoot(container); // createRoot(container!) if you use TypeScript
 root.render(<App/>);`
reactjs parceljs
1个回答
3
投票

FWIW,我遇到了这个问题几分钟,直到我意识到 React 不再出现在我的 package.json 文件中。添加 React 18 回来后,我很高兴继续处理下一个错误。 :)

© www.soinside.com 2019 - 2024. All rights reserved.