Switch to Firebase
JWT to Firebase
Set Firebase Config
At present, Firebase requires you to set a secret in the following file. For more details, refer to Firebase here: https://firebase.google.com/docs/reference/rest/auth
...
###
## Firebase - Google Auth
VITE_APP_FIREBASE_API_KEY=
VITE_APP_FIREBASE_AUTH_DOMAIN=
VITE_APP_FIREBASE_PROJECT_ID=
VITE_APP_FIREBASE_STORAGE_BUCKET=
VITE_APP_FIREBASE_MESSAGING_SENDER_ID=
VITE_APP_FIREBASE_APP_ID=
VITE_APP_FIREBASE_MEASUREMENT_ID=
###
...Change Config
export const APP_AUTH: AuthProvider = AuthProvider.FIREBASE;Change AuthProvider
Comment out another provider in the following file and uncomment the Firebase one.
Change Auth Hooks
Comment out another context in the following file and uncomment the Firebase one.
JWT to Firebase
Set Firebase Config
At present, Firebase requires you to set a secret in the following file. For more details, refer to Firebase here: https://firebase.google.com/docs/reference/rest/auth
Change Config
Change AuthProvider
Comment out another provider in the following file and uncomment the Firebase one.
Change Auth Hooks
Comment out another context in the following file and uncomment the Firebase one.
Last updated