-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.21 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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Monotaur</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
body {
background: black;
margin: 0;
}
</style>
<!--
JSPM Generator Import Map
Edit URL: https://generator.jspm.io/#U2NhYGDhD80rySzJSU1hKMkoSk3VTS5O1y0pdjDWM9QzNICIORjoGZoY6aHx9FMrEnMLclKL9bOKc/WTEwsSkzJzMksygQLhqUnuPnpZxfg05OQnpqQWFesHh7n7gJlA9QDxTRbakQA
-->
<script type="importmap">
{
"imports": {
"three": "./node_modules/three/build/three.module.js",
"three-csg-ts": "./vendor/three-csg-ts/index.js",
"three/examples/jsm/capabilities/WebGL.js": "./node_modules/three/examples/jsm/capabilities/WebGL.js",
"three/examples/jsm/loaders/SVGLoader.js": "./node_modules/three/examples/jsm/loaders/SVGLoader.js"
},
"extension": "js"
}
</script>
<!-- ES Module Shims: Import maps polyfill for modules browsers without import maps support (all except Chrome 89+) -->
<script async src="./node_modules/es-module-shims/dist/es-module-shims.js" crossorigin="anonymous"></script>
<script type="module" src="scene.js"></script>
</head>
<body>
</body>
</html>