summaryrefslogtreecommitdiff
path: root/babel.config.js
blob: 8bcefc59e897b8fd262540a164806572959c6e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
    }]
  ]
  };
};