21 lines
552 B
TypeScript
21 lines
552 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.yotrip.app',
|
|
appName: 'YoTrip',
|
|
webDir: 'dist',
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchShowDuration: 2000
|
|
},
|
|
GoogleAuth: {
|
|
scopes: ['profile', 'email'],
|
|
serverClientId: '639044397050-7hair384u6lle941h033trut1s3q47l4.apps.googleusercontent.com',
|
|
androidClientId: '639044397050-7hair384u6lle941h033trut1s3q47l4.apps.googleusercontent.com',
|
|
forceCodeForRefreshToken: true
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|