-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 2.34 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 2.34 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Witch Dice ~ cute dice roller</title>
<meta
name="description"
content="An elegant + powerful shared online dice roller with tools for some specific systems."
/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icon192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/manifest.json" />
<script async defer data-domain="witchdice.com" src="https://plausible.io/js/plausible.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Bitter:ital,wght@0,100..900;1,100..900&family=PT+Mono&display=swap" rel="stylesheet">
<!-- Polyfills from https://web3auth.io/community/t/how-to-migrate-from-create-react-app-to-vite/8807 -->
<script type="module">
import { Buffer } from "buffer";
import process from "process";
window.Buffer = Buffer;
window.process = process;
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-app.js"></script>
<!-- Add SDKs for Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-database.js"></script>
<script>
var firebaseConfig = {
apiKey: "AIzaSyBQJ2LG4nrCBhoIxg94rYi7AzzNf-GqgTM",
authDomain: "roll-to-hit.firebaseapp.com",
databaseURL: "https://roll-to-hit.firebaseio.com",
projectId: "roll-to-hit",
storageBucket: "roll-to-hit.appspot.com",
messagingSenderId: "55772958032",
appId: "1:55772958032:web:42c2dc78d955a887293055",
};
firebase.initializeApp(firebaseConfig);
// Development: point to the local firebase emulator instead of production
if (window.location.hostname === "localhost") {
window.firebase.database().useEmulator("localhost", 9000);
}
</script>
</body>
</html>