Google Login frontend

This commit is contained in:
2023-10-08 12:27:31 +08:00
parent 5c79fe982e
commit 1eba696b8a
13 changed files with 171 additions and 18 deletions
+9 -1
View File
@@ -4,7 +4,15 @@ const config: CapacitorConfig = {
appId: 'com.wrenchboard.users',
appName: 'WrenchBoard',
webDir: 'www',
bundledWebRuntime: false
bundledWebRuntime: false,
plugins: {
GoogleAuth: {
scopes: ['profile', 'email'],
clientId: '817021856543-ad9nsjgdpsu2s2jrl63j3ihrv7lbf6ma.apps.googleusercontent.com',
serverClientId: '817021856543-ad9nsjgdpsu2s2jrl63j3ihrv7lbf6ma.apps.googleusercontent.com',
forceCodeForRefreshToken: true,
},
},
};
export default config;