mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-19 14:04:08 +01:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
import 'dotenv/config';
|
|
|
|
export default {
|
|
expo: {
|
|
name: 'chefhai',
|
|
slug: 'chefhai',
|
|
version: '1.0.0',
|
|
orientation: 'portrait',
|
|
icon: './assets/images/icon.png',
|
|
scheme: 'chefhai',
|
|
userInterfaceStyle: 'automatic',
|
|
newArchEnabled: true,
|
|
ios: {
|
|
supportsTablet: true
|
|
},
|
|
android: {
|
|
adaptiveIcon: {
|
|
foregroundImage: './assets/images/adaptive-icon.png',
|
|
backgroundColor: '#ffffff'
|
|
},
|
|
edgeToEdgeEnabled: true
|
|
},
|
|
web: {
|
|
bundler: 'metro',
|
|
output: 'static',
|
|
favicon: './assets/images/favicon.png'
|
|
},
|
|
plugins: [
|
|
'expo-router',
|
|
[
|
|
'expo-splash-screen',
|
|
{
|
|
image: './assets/images/splash-icon.png',
|
|
imageWidth: 200,
|
|
resizeMode: 'contain',
|
|
backgroundColor: '#ffffff'
|
|
}
|
|
],
|
|
'expo-secure-store'
|
|
],
|
|
experiments: {
|
|
typedRoutes: true
|
|
},
|
|
extra: {
|
|
FIREBASE_API_KEY: process.env.FIREBASE_API_KEY,
|
|
FIREBASE_AUTH_DOMAIN: process.env.FIREBASE_AUTH_DOMAIN,
|
|
FIREBASE_PROJECT_ID: process.env.FIREBASE_PROJECT_ID,
|
|
FIREBASE_STORAGE_BUCKET: process.env.FIREBASE_STORAGE_BUCKET,
|
|
FIREBASE_MESSAGING_SENDER_ID: process.env.FIREBASE_MESSAGING_SENDER_ID,
|
|
FIREBASE_APP_ID: process.env.FIREBASE_APP_ID,
|
|
},
|
|
},
|
|
};
|