-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
32 lines (32 loc) · 1.28 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="src/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Save editor for Risk of Rain 2" />
<title>Risk of Rain 2 | Save Editor</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-analytics.js"></script>
<script>
var firebaseConfig = {
apiKey: "AIzaSyDSow3W6gAZuG-AIsk7WABb6KErBo8T7-I",
authDomain: "riskofrain2-save-editor.firebaseapp.com",
databaseURL: "https://riskofrain2-save-editor.firebaseio.com",
projectId: "riskofrain2-save-editor",
storageBucket: "riskofrain2-save-editor.appspot.com",
messagingSenderId: "945506171447",
appId: "1:945506171447:web:3b0b62d38b7c6fd8fc5db2",
measurementId: "G-L1LY96M6WQ",
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</body>
</html>