From 39ea7c3acdd89d2f8a3c3aa6be1d7ef7f3e0ba02 Mon Sep 17 00:00:00 2001 From: codevictory Date: Tue, 19 Oct 2021 22:08:11 +0300 Subject: [PATCH] Add firebase api config. --- src/api.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/api.ts diff --git a/src/api.ts b/src/api.ts new file mode 100644 index 0000000..a024c75 --- /dev/null +++ b/src/api.ts @@ -0,0 +1,12 @@ +import { initializeApp } from "firebase/app"; + +const firebaseConfig = { + apiKey: "AIzaSyBcE9X0ueyczUqpjm0bK9UDrzvDmB96pr4", + authDomain: "lintujamaslo.firebaseapp.com", + projectId: "lintujamaslo", + storageBucket: "lintujamaslo.appspot.com", + messagingSenderId: "110340750803", + appId: "1:110340750803:web:89f5187720e77fc2788326" +}; + +const app = initializeApp(firebaseConfig); \ No newline at end of file