当模块和项目与webpack 2捆绑在一起时,如何避免多个响应副本

时间:2017-04-14 07:52:57

标签: node.js node-modules webpack-2

我创建了一个名为services的模块,它为其他项目提供加载栏,通知和flash标语等。我通过babel捆绑了这个模块,它运行得很完美,但随着服务需求不断增长,所以我必须从webpack-2捆绑这个因为css类型问题。我将它捆绑为一个库。但是当我使用从服务导入的通知时,它会发出警告

Uncaught Error: addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component's `render` method, or you have multiple copies of React loaded 

index.js:25 Uncaught TypeError: Cannot read property 'componentWillEnter' of undefined

PS:我已经尝试过webpack的resolve.alias和externals属性但没有用:(有什么建议吗?

0 个答案:

没有答案