File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { ExpoConfig , ConfigContext } from 'expo/config' ;
22
3+ const expoOwner = process . env . EXPO_OWNER || 'profullstack' ;
4+ const expoProjectId = process . env . EXPO_PROJECT_ID || '6128e774-2ee6-4e21-b2d2-62a5045b813c' ;
5+
36export default ( { config } : ConfigContext ) : ExpoConfig => ( {
47 ...config ,
58 name : 'ThreatCrush' ,
6- slug : 'threatcrush' ,
9+ slug : 'threatcrush-mobile ' ,
710 scheme : 'threatcrush' ,
811 version : '0.1.6' ,
12+ owner : expoOwner || undefined ,
913 orientation : 'portrait' ,
1014 icon : './assets/icon.png' ,
1115 userInterfaceStyle : 'dark' ,
@@ -29,5 +33,8 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
2933 plugins : [ 'expo-router' , 'expo-secure-store' ] ,
3034 extra : {
3135 apiUrl : process . env . THREATCRUSH_API_URL || 'https://threatcrush.com' ,
36+ eas : {
37+ projectId : expoProjectId || undefined ,
38+ } ,
3239 } ,
3340} ) ;
You can’t perform that action at this time.
0 commit comments