现在在我的项目中,我正在使用react-loadable对代码库进行代码拆分。 在开发环境中,它在chrome浏览器中运行良好,但是当我尝试在firefox上使用它时,控制台会显示类似以下内容:
我发现错误来自在react-loadable中执行的import()函数。像这样:
const LineChart = Loadable({
loader: () => import ('../js/LineChart' /* webpackChunkName: "CorrectorPerformanceChart" */),
loading: AppLoader
});
/* The problem is in the loader parameter */
但是这个问题只发生在开发中,当我构建并提供它时,错误就消失了。
我该怎么做才能缓解此问题?开发中是否可以使用任何polyfill或设置? (我正在使用create react应用)
firefox版本:61.0.2(64位)
非常感谢:)