summaryrefslogtreecommitdiff
path: root/babel.config.js
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
commitebc613fee1ec59642b87a075da4d0a97b3aa1ad7 (patch)
tree4382997efbda79479c55d8a3656b18113351f75b /babel.config.js
parentae63532503eb0b5c7a60d18ef17504c0632d508d (diff)
Use Expo router env
Diffstat (limited to 'babel.config.js')
-rw-r--r--babel.config.js11
1 files changed, 1 insertions, 10 deletions
diff --git a/babel.config.js b/babel.config.js
index 8bcefc5..9ecdc7a 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -2,15 +2,6 @@ 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
- }]
- ]
+ plugins: []
};
};