diff options
Diffstat (limited to 'babel.config.js')
-rw-r--r-- | babel.config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/babel.config.js b/babel.config.js index 9d89e13..8bcefc5 100644 --- a/babel.config.js +++ b/babel.config.js @@ -2,5 +2,15 @@ module.exports = function (api) { api.cache(true); return { presets: ['babel-preset-expo'], + plugins: [ + ["module:react-native-dotenv", { + "envName": "APP_ENV", + "moduleName": "@env", + "path": ".env", + "safe": false, + "allowUndefined": true, + "verbose": false + }] + ] }; }; |