diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-29 18:27:23 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-29 18:27:23 +0200 |
commit | ae63532503eb0b5c7a60d18ef17504c0632d508d (patch) | |
tree | 832c41d50b2621f5a6ffdc1900eadb10cd652440 /babel.config.js | |
parent | d8f83a2faa426cc9d83c5a0192b5a007983c916e (diff) |
Login page
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 + }] + ] }; }; |