-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chess</title>
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<script type="text/javascript" src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/",
"three/loaders": "https://unpkg.com/[email protected]/examples/jsm/loaders/"
}
}
</script>
<script>console.time("load");</script>
<!-- <script type="module" src="src/js/index.js?v20230905T02:05:47.920Z"></script>-->
<script type="module" src="build/gameboard.min.js?v20230905T02:38:43.752Z"></script>
</head>
<body style="overflow:hidden">
<game-board id="gameboard"></game-board>
</body>
</html>