bsky-app/babel.config.js

20 lines
435 B
JavaScript
Raw Normal View History

2022-06-08 00:50:05 +02:00
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
2022-06-16 00:40:18 +02:00
plugins: [
[
'module:react-native-dotenv',
{
2022-11-11 22:02:19 +01:00
envName: 'APP_ENV',
2022-06-16 00:40:18 +02:00
moduleName: '@env',
path: '.env',
blocklist: null,
allowlist: null,
safe: false,
allowUndefined: true,
verbose: false,
},
],
'react-native-reanimated/plugin', // NOTE: this plugin MUST be last
2022-06-16 00:40:18 +02:00
],
2022-06-09 20:03:25 +02:00
}