Arquivos
Kory e69b4ad5d1 Removing firebase TODO from index.html
We do not need to add any other libraries from firebase, thus removing this stale todo
2020-01-03 16:59:08 -05:00

46 linhas
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>EEGEdu</title>
<link rel="stylesheet" href="https://unpkg.com/@shopify/polaris@4.9.0/styles.min.css" />
</head
>
<body>
<div id="root"></div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-analytics.js"></script>
<script>
const firebaseConfig = {
apiKey: "AIzaSyDOxvc3ajTHyZLXcVPkqb7Nbeo3Tn8eFCs",
authDomain: "eegedu.firebaseapp.com",
databaseURL: "https://eegedu.firebaseio.com",
projectId: "eegedu",
storageBucket: "eegedu.appspot.com",
messagingSenderId: "987114688746",
appId: "1:987114688746:web:b13b68f24897ca97440793",
measurementId: "G-2HB7VKGKV9"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
document.addEventListener("DOMContentLoaded", () => {
try {
firebase.app();
} catch (e) {
console.error(e);
console.log("Error loading the Firebase SDK, check the console.");
}
});
</script>
</body>
</html>