Skip to content

Commit

Permalink
Update config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mo9a7i committed Jun 11, 2024
1 parent 7babf1e commit 648cafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dotenv.config();
const { FIREBASE_BASE64_CREDS } = process.env;
console.log(FIREBASE_BASE64_CREDS);
if (!FIREBASE_BASE64_CREDS) {
throw new Error("Missing environment variables");
throw new Error(`Missing environment variables FIREBASE_BASE64_CREDS`);
}

export const FIREBASE_BASE64_CREDS_EXPORTED = FIREBASE_BASE64_CREDS;
Expand Down

0 comments on commit 648cafd

Please sign in to comment.