14 lines
597 B
TypeScript
14 lines
597 B
TypeScript
// To find your config, go to https://console.firebase.google.com/ and select your project
|
|
// Go to (top left) Settings > Project Settings > General
|
|
// scroll down to Your apps > Web Apps (if it doesnt exist, create one) > SDK setup and configuration > select npm
|
|
// your config should be visible there
|
|
|
|
export const firebaseConfig = {
|
|
apiKey: "###FIREBASE_APIKEY###",
|
|
authDomain: "###FIREBASE_AUTHDOMAIN###",
|
|
projectId: "###FIREBASE_PROJECTID###",
|
|
storageBucket: "###FIREBASE_STORAGEBUCKET###",
|
|
messagingSenderId: "###FIREBASE_MESSAGINGSENDERID###",
|
|
appId: "###FIREBASE_APPID###",
|
|
};
|