Skip to content

Instantly share code, notes, and snippets.

@FreddyPoly
Created July 5, 2019 13:48
Show Gist options
  • Save FreddyPoly/972f9a5942d6516068911e84ce978ecc to your computer and use it in GitHub Desktop.
Save FreddyPoly/972f9a5942d6516068911e84ce978ecc to your computer and use it in GitHub Desktop.
[REACT NATIVE] Env Var babel
{
"presets": ["module:metro-react-native-babel-preset"],
"env": {
"production": {
}
},
"plugins": [
[
"transform-inline-environment-variables",
{
"include": ["NODE_ENV", "ENV_VAR_TEST"]
}
],
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-optional-catch-binding"
]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment