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.
1 parent 66c7373 commit b525661Copy full SHA for b525661
app.config.ts
@@ -1,4 +1,4 @@
1
-import { ConfigContext, ExpoConfig } from "expo/config";
+import { ExpoConfig } from "expo/config";
2
import { version } from "./package.json";
3
4
type EnvironmentConfig = {
@@ -74,12 +74,11 @@ const settings: Record<Environment, EnvironmentConfig> = {
74
},
75
};
76
77
-export default ({ config: defaultConfig }: ConfigContext): ExpoConfig => {
+export default (): ExpoConfig => {
78
const environment = (process.env.EXPO_ENV || "dev") as Environment;
79
const config = settings[environment];
80
81
return {
82
- ...defaultConfig,
83
name: config.appName,
84
scheme: config.scheme,
85
owner: "converse",
0 commit comments