Skip to content

Commit e754fce

Browse files
committed
Editor: Fixed editor not loading on Chrome 129.0.6668.100 due to import maps definitions location.
1 parent aedf298 commit e754fce

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

editor/index.html

+13-13
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@
1212
<body>
1313
<link rel="stylesheet" href="css/main.css">
1414

15+
<script type="importmap">
16+
{
17+
"imports": {
18+
"three": "../build/three.module.js",
19+
"three/addons/": "../examples/jsm/",
20+
21+
"three/examples/": "../examples/",
22+
"three-gpu-pathtracer": "https://cdn.jsdelivr.net/npm/three-gpu-pathtracer@0.0.23/build/index.module.js",
23+
"three-mesh-bvh": "https://cdn.jsdelivr.net/npm/three-mesh-bvh@0.7.4/build/index.module.js"
24+
}
25+
}
26+
</script>
27+
1528
<script src="../examples/jsm/libs/draco/draco_encoder.js"></script>
1629

1730
<link rel="stylesheet" href="js/libs/codemirror/codemirror.css">
@@ -45,19 +58,6 @@
4558
<script src="js/libs/tern-threejs/threejs.js"></script>
4659
<script src="js/libs/signals.min.js"></script>
4760

48-
<script type="importmap">
49-
{
50-
"imports": {
51-
"three": "../build/three.module.js",
52-
"three/addons/": "../examples/jsm/",
53-
54-
"three/examples/": "../examples/",
55-
"three-gpu-pathtracer": "https://cdn.jsdelivr.net/npm/three-gpu-pathtracer@0.0.23/build/index.module.js",
56-
"three-mesh-bvh": "https://cdn.jsdelivr.net/npm/three-mesh-bvh@0.7.4/build/index.module.js"
57-
}
58-
}
59-
</script>
60-
6161
<script type="module">
6262

6363
import * as THREE from 'three';

0 commit comments

Comments
 (0)