Files
contexted-v3/capacitor.config.ts
2023-06-08 22:22:29 +02:00

25 lines
476 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'com.contexted.app',
appName: 'Contexted',
webDir: 'dist',
server: {
androidScheme: 'https'
},
plugins: {
SplashScreen: {
backgroundColor: '#1E4BC4'
},
Keyboard: {
resize: 'native'
},
FirebaseAuthentication: {
skipNativeAuth: false,
providers: ['google.com', 'microsoft.com', 'github.com']
}
}
}
export default config