I want to integrate the QR code scanner feature in my react-native-based applications.
so I am installing the react-native-vision-camera package.
According to documentation, I have to add globals __scanQRCodes
inside babel.config.js
globals: ['__scanQRCodes']
But after adding globals __scanQRCodes
inside babel.config.js
.
I got BABEL TRANSFORM ERROR
.globals is not a valid Plugin property
I want to integrate the QR code scanner feature in my react-native-based applications.
so I am installing the react-native-vision-camera package.
According to documentation, I have to add globals __scanQRCodes
inside babel.config.js
globals: ['__scanQRCodes']
But after adding globals __scanQRCodes
inside babel.config.js
.
I got BABEL TRANSFORM ERROR
.globals is not a valid Plugin property
2 Answers
Reset to default 7we need to define the array as shown in the image below, you miss the square brackets like this:
plugins: [
[
'react-native-reanimated/plugin',
{ globals: ['__scanQRCodes'] }
]
]
see this image for proper understand
We need to do this 2 modifications:
plugins: [
[
'react-native-reanimated/plugin',
{ globals: ['__scanCodes'] },
],
]
And finally:
npx react-native start --reset-cache
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744238441a4564585.html
评论列表(0条)