Skip to content
Snippets Groups Projects
babel.config.js 381 B
Newer Older
horpynych-ap's avatar
horpynych-ap committed
module.exports = function(api) {
  api.cache(true);
  return {
horpynych-ap's avatar
horpynych-ap committed
    presets: ['babel-preset-expo','module:metro-react-native-babel-preset'],
    plugins: [
      ["module:react-native-dotenv", {
        "envName": "APP_ENV",
        "moduleName": "@env",
        "path": ".env",
        "safe": false,
        "allowUndefined": true,
        "verbose": false
      }]
    ]
horpynych-ap's avatar
horpynych-ap committed
  };
};