diff --git a/functions/src/firebase.ts b/functions/src/firebase.ts index 89b54b4..b7d9aca 100644 --- a/functions/src/firebase.ts +++ b/functions/src/firebase.ts @@ -6,6 +6,9 @@ import {getStorage} from "firebase-admin/storage"; const config = process.env.FIREBASE_CONFIG ? JSON.parse(process.env.FIREBASE_CONFIG) : undefined; +console.log(config); +console.log(process.env); + const app = initializeApp(config); export const auth = getAuth(app); export const storage = getStorage(app).bucket();