19 lines
524 B
TypeScript
19 lines
524 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.wrenchboard.users',
|
|
appName: 'WrenchBoard',
|
|
webDir: 'www',
|
|
bundledWebRuntime: false,
|
|
plugins: {
|
|
GoogleAuth: {
|
|
scopes: ['profile', 'email'],
|
|
clientId: '817021856543-khlurl8ifdr0sd2cvekn167d02mk9dlg.apps.googleusercontent.com',
|
|
serverClientId: '817021856543-khlurl8ifdr0sd2cvekn167d02mk9dlg.apps.googleusercontent.com',
|
|
forceCodeForRefreshToken: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|