| 123456789101112131415161718192021222324 |
- module.exports = function (api) {
- api.cache(true);
- return {
- presets: [
- ["babel-preset-expo", { jsxImportSource: "nativewind" }],
- "nativewind/babel",
- ],
- plugins: [
- [
- 'module:react-native-dotenv',
- {
- moduleName: '@env',
- path: 'factory-env/.env.global.development',
- allowlist: [
- 'EXPO_PUBLIC_NODE_ENV',
- 'EXPO_PUBLIC_API_URL',
- 'EXPO_PUBLIC_API_IMG_URL',
- ],
- blocklist: []
- }
- ]
- ]
- };
- };
|