I’m working in an environment without npm. Importing THREE works as expected with the latest
tag:
import * as THREE from 'https://unpkg.com/three@latest/build/three.module.js'
But importing OrbitControls
is another story. this works:
import { OrbitControls } from 'https://unpkg.com/[email protected]/examples/jsm/controls/OrbitControls.js'
But this does not:
import { OrbitControls } from 'https://unpkg.com/three@latest/examples/jsm/controls/OrbitControls.js'
It raises the following error:
Uncaught TypeError: Failed to resolve module specifier "three". Relative references must start with either "/", "./", or "../".
Does anyone know why that is?