fix(rsplat): use three/addons/ import path to match importmap

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-15 17:18:19 -07:00
parent 8cdaf77e9a
commit c233f1338b
2 changed files with 4 additions and 4 deletions

View File

@ -698,8 +698,8 @@ export class FolkSplatViewer extends HTMLElement {
private async initGlbViewer(container: HTMLElement, loading: HTMLElement | null) {
const THREE = await import("three");
const { OrbitControls } = await import("three/examples/jsm/controls/OrbitControls.js");
const { GLTFLoader } = await import("three/examples/jsm/loaders/GLTFLoader.js");
const { OrbitControls } = await import("three/addons/controls/OrbitControls.js");
const { GLTFLoader } = await import("three/addons/loaders/GLTFLoader.js");
const w = container.clientWidth || 800;
const h = container.clientHeight || 600;

View File

@ -605,7 +605,7 @@ routes.get("/", async (c) => {
`,
scripts: `
<script type="module">
import { FolkSplatViewer } from '/modules/rsplat/folk-splat-viewer.js?v=2';
import { FolkSplatViewer } from '/modules/rsplat/folk-splat-viewer.js?v=3';
const gallery = document.getElementById('gallery');
gallery.splats = ${splatsJSON};
gallery.spaceSlug = '${spaceSlug}';
@ -669,7 +669,7 @@ routes.get("/view/:id", async (c) => {
`,
scripts: `
<script type="module">
import { FolkSplatViewer } from '/modules/rsplat/folk-splat-viewer.js?v=2';
import { FolkSplatViewer } from '/modules/rsplat/folk-splat-viewer.js?v=3';
</script>
`,
});