-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsavedata.js
21 lines (19 loc) · 899 Bytes
/
savedata.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{/* <script type="module"> */}
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.18.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.18.0/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
const firebaseConfig = {
apiKey: "AIzaSyCe3PV094-Qyp972MFiARTCQxSbLZ_gw1o",
authDomain: "mentalhealth-52558.firebaseapp.com",
projectId: "mentalhealth-52558",
storageBucket: "mentalhealth-52558.appspot.com",
messagingSenderId: "199609149416",
appId: "1:199609149416:web:5dd447516532b7abdf265d",
measurementId: "G-BY972TXWWL"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
{/* </script> */}