setup electron app for production

This commit is contained in:
talksik
2026-04-13 10:03:23 -07:00
parent 1579de8c6d
commit 106254ef83
13 changed files with 96 additions and 21 deletions
+2 -10
View File
@@ -1,16 +1,8 @@
import { initializeApp } from 'firebase/app';
import { getFirestore } from "firebase/firestore";
import { appConfig } from "@/config/env";
const firebaseConfig = {
apiKey: "AIzaSyDF_fbk7tDY9tNxUiOwwi--2nYZWZygMGk",
appId: "1:1006580076785:web:e2a0736d60a78e02b15950",
authDomain: "flowy-dev-440017.firebaseapp.com",
messagingSenderId: "1006580076785",
projectId: "flowy-dev-440017",
storageBucket: "flowy-dev-440017.firebasestorage.app",
};
export const firebaseApp = initializeApp(firebaseConfig);
export const firebaseApp = initializeApp(appConfig.firebase);
export const firestoreDb = getFirestore(firebaseApp);
// simplifying setup to debug production issues