-1

我做了一个反应库,我在反应网络应用程序和反应本机应用程序之间共享。

它使用 return regeneratorRuntime.wrap 来替换异步。所以我必须导入 babel-polyfill 才能让它工作。我添加:导入“babel-polyfill”;在我的模块 index.js 文件中

它运作良好,但我的应用程序上有这个丑陋的错误:

 Uncaught Error: only one instance of babel-polyfill is allowed
        at Object.<anonymous> (index.es.js:6646)
        at Object.<anonymous> (main.4c81c635.js:11811)
        at t (bootstrap c8114fe78af615bb02e2:19)
        at Object.<anonymous> (main.4c81c635.js:19203)
        at t (bootstrap c8114fe78af615bb02e2:19)
        at Object.<anonymous> (main.4c81c635.js:15866)
        at t (bootstrap c8114fe78af615bb02e2:19)
        at Object.<anonymous> (main.4c81c635.js:18400)
        at t (bootstrap c8114fe78af615bb02e2:19)
        at Object.<anonymous> (main.4c81c635.js:17848)

你知道如何管理它吗?

4

1 回答 1

0

我把我的 babel.rc 改成了那个,它现在可以工作了;)

 {
      "presets": [
        "react-app"
      ],
      "plugins": [
        "external-helpers"
      ]
    }
于 2018-07-08T17:11:25.213 回答