Failed to resolve module specifier "three". Relative references must start with either "/", "./", or "../".

 

<script type="module">
    import * as THREE from './build/three.module.js'
	import { PointerLockControls } from './jsm/controls/PointerLockControls.js'
</script>

通过type="module"引入three.js可能会引起该报错

可以加上以下代码解决

	<script type="importmap">
		{
			"imports": {
				"three": "./build/three.module.js"
			}
		}
	</script>

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐