We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9515ad8 commit bbd77b0Copy full SHA for bbd77b0
index.html
@@ -305,10 +305,12 @@
305
padding: 0 30px;
306
}
307
</style>
308
- <script type="module" src="three.js"></script>
+ <script type="module">
309
+ import * as THREE from './three.js';
310
+ </script>
311
<script type="module" src="OrbitControls.js"></script>
312
<script type="module" src="Reflector.js"></script>
- <script type="module" src="bmfont.js"></script>
313
+ <script src="bmfont.js"></script>
314
</head>
315
<body>
316
<div class=body>
index.js
@@ -15,3 +15,5 @@ https.createServer({
15
.listen(443)
16
17
console.log(`https://dev.exokit.org`);
18
+
19
+app.listen(3100, () => console.log(`localhost:3100`));
0 commit comments