-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 892 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>M8BF</title>
<link rel="preload" crossOrigin="anonymous" as="font" href="fonts/earls-revenge/EarlsRevenge-69Kg.woff2" type="font/woff2" />
<link rel="stylesheet" href="style.css">
<!-- <script src="vender/phaser.js"></script>-->
<script src="vender/phaser.min.js"></script>
<link rel="icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<script>
// If local, use the non-bundled js, otherwise use the bundled js
const src = window.location.hostname === '127.0.0.1' ? 'js/index.js' : 'dist/bundle.js';
document.write('<script src="' + src + '" type="module"><\/script>');
</script>
</body>
</html>