bundling failed: Error: Plugin 0 provided an invalid property of “default”

前端 未结 5 1902
别跟我提以往
别跟我提以往 2020-12-16 19:35

I\'m trying to run a react native app on my AVD using this command :

react-native run-android

but getting the following error:



        
5条回答
  •  失恋的感觉
    2020-12-16 19:48

    I had this issue, I needed to downgrade babel-preset-react-native version.

    If you use yarn

    yarn remove babel-preset-react-native
    yarn add babel-preset-react-native@4.0.0
    

    or use npm commands

    npm uninstall babel-preset-react-native
    npm install babel-preset-react-native@4.0.0
    

提交回复
热议问题