Skip to content

Instantly share code, notes, and snippets.

@ivanmercedes
Created March 24, 2022 16:06
Show Gist options
  • Select an option

  • Save ivanmercedes/e1db48878174ca2432c5b2086181551f to your computer and use it in GitHub Desktop.

Select an option

Save ivanmercedes/e1db48878174ca2432c5b2086181551f to your computer and use it in GitHub Desktop.
babel.config.js React Native dotenv
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
[
"module:react-native-dotenv",
{
moduleName: "@env",
path: ".env",
blacklist: null,
whitelist: null,
safe: false,
allowUndefined: true,
},
],
],
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment