25 lines
476 B
TypeScript
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
|