diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | app/(tabs)/index.tsx | 5 | ||||
-rw-r--r-- | babel.config.js | 11 | ||||
-rw-r--r-- | env.d.ts | 5 | ||||
-rw-r--r-- | package-lock.json | 20 | ||||
-rw-r--r-- | package.json | 1 |
6 files changed, 3 insertions, 41 deletions
@@ -2,5 +2,5 @@ ``` # .env -API_URL= +EXPO_PUBLIC_API_URL= ``` diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 46a690f..c631903 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -4,7 +4,6 @@ import ParallaxScrollView from '@/components/ParallaxScrollView'; import { ThemedText } from '@/components/ThemedText'; import { ThemedView } from '@/components/ThemedView'; import React, { useState, useEffect } from 'react'; -import { API_URL } from '@env'; import AsyncStorage from '@react-native-async-storage/async-storage'; @@ -28,7 +27,7 @@ export default function HomeScreen() { } try { - const response = await fetch(`${API_URL}/graphql`, { + const response = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/graphql`, { method: 'POST', headers: { 'Content-Type': 'application/json', @@ -108,7 +107,6 @@ export default function HomeScreen() { style={styles.formInput} onChangeText={setUsername} value={username} - placeholder="Username" /> </View> <View> @@ -117,7 +115,6 @@ export default function HomeScreen() { style={styles.formInput} onChangeText={setPassword} value={password} - placeholder="Password" secureTextEntry /> </View> diff --git a/babel.config.js b/babel.config.js index 8bcefc5..9ecdc7a 100644 --- a/babel.config.js +++ b/babel.config.js @@ -2,15 +2,6 @@ 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 - }] - ] + plugins: [] }; }; diff --git a/env.d.ts b/env.d.ts deleted file mode 100644 index 4c6321d..0000000 --- a/env.d.ts +++ /dev/null @@ -1,5 +0,0 @@ - declare module '@env' { - export const API_URL: string; - export const CAZZO: string; - } - diff --git a/package-lock.json b/package-lock.json index 405151c..210cbfc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,6 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-native": "0.74.5", - "react-native-dotenv": "^3.4.11", "react-native-gesture-handler": "~2.16.1", "react-native-reanimated": "~3.10.1", "react-native-safe-area-context": "4.10.5", @@ -15692,17 +15691,6 @@ } } }, - "node_modules/react-native-dotenv": { - "version": "3.4.11", - "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", - "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==", - "dependencies": { - "dotenv": "^16.4.5" - }, - "peerDependencies": { - "@babel/runtime": "^7.20.6" - } - }, "node_modules/react-native-gesture-handler": { "version": "2.16.2", "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz", @@ -29799,14 +29787,6 @@ } } }, - "react-native-dotenv": { - "version": "3.4.11", - "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", - "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==", - "requires": { - "dotenv": "^16.4.5" - } - }, "react-native-gesture-handler": { "version": "2.16.2", "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz", diff --git a/package.json b/package.json index 82778e0..b366c93 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,6 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-native": "0.74.5", - "react-native-dotenv": "^3.4.11", "react-native-gesture-handler": "~2.16.1", "react-native-reanimated": "~3.10.1", "react-native-safe-area-context": "4.10.5", |