React Native 在 build 的时候如果出现 `babel.config.js` 配置文件的错误
React Native 在 build 的时候如果出现以下错误, 就是 babel.config.js
配置文件的错误.
Showing Recent Issues
node:internal/process/promises:289
triggerUncaughtException(err, true /* fromPromise */);
^
Error: .plugins[0][1] must be an object, false, or undefined
at /xxxxxxxxxxxxxx/babel.config.js
通常出现这个错误, 是 babel.config.js
的格式错误.
例如:
plugins: [
[
['xxxxx', {}}
]
]
应该是:
plugins: [
['xxxxx', {}}
]