我做了一个反应库,我在反应网络应用程序和反应本机应用程序之间共享。
它使用 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)
你知道如何管理它吗?