summaryrefslogtreecommitdiff
path: root/babel.config.js
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-29 18:27:23 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-29 18:27:23 +0200
commitae63532503eb0b5c7a60d18ef17504c0632d508d (patch)
tree832c41d50b2621f5a6ffdc1900eadb10cd652440 /babel.config.js
parentd8f83a2faa426cc9d83c5a0192b5a007983c916e (diff)
Login page
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js10
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
+ }]
+ ]
};
};