码迷,mamicode.com
首页 > 其他好文 > 详细

node+react 打包成功,控制台报错

时间:2018-02-23 19:09:49      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:modules   rect   make   native   add   conf   undefined   one   解决   

控制台报错: ‘ReactCurrentOwner‘ of undefined

解决办法:RN版本的问题。

    

As I mentioned, make sure you‘ve installed the correct version of React. If you‘re using React Native 0.45:
yarn add react@16.0.0-alpha.12

    npm install react@16.0.0-alpha.12 --save-dev

    npm install --save-dev babel-preset-es2015

test:/\.jsx?$/,
        exclude:/node_modules/,
        loader:‘babel-loader‘,
        query:{
            presets:[‘es2015‘,‘react‘]
        }

  

Your config is

presets: [‘es2015‘, ‘react‘]

but the only preset you‘ve installed is

+-- babel-preset-es2015@6.18.0

So your answer is

npm install --save-dev babel-preset-react

    

node+react 打包成功,控制台报错

标签:modules   rect   make   native   add   conf   undefined   one   解决   

原文地址:https://www.cnblogs.com/detanx/p/errorSolute.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!