We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Rename the import from 'react-native-dotenv' to '@env':
Before:
import {API_URL, API_TOKEN} from 'react-native-dotenv'
After:
import {API_URL, API_TOKEN} from '@env'
Make sure to add module:react-native-dotenv to the list of babel plugins
module:react-native-dotenv
module.exports = { presets: ["module:metro-react-native-babel-preset"], plugins: [ "module:react-native-dotenv", ... ] };