我使用npx create-react-app my-app cmd(React 17 版本)创建了一个 React 应用程序。现在好吧,我只是尝试替换经典
import Component from './Component'
to
const Component = React.lazy(() => import('./Component'));
and then
<React.Suspense fallback={<div>Loading.. </div>}>
<Component />
</React.Suspense>
但它会引发类似 SyntaxError: Unexpected token at import(6:22) 的错误
> 6 | const Component = React.lazy(() => import('./Component'));
谁能帮我解决这个问题?
我的 package.json 看起来像