我将NuxtJS与ThreeJS结合使用。
在我进口吐温之后
import { TWEEN } from 'three/examples/jsm/libs/tween.module.min.js'
我知道这个错误:
Cannot assign to read only property 'exports' of object '#<Object>'
有什么解决办法吗?
发布于 2022-06-28 12:58:01
最后,我使用了独立的tweenjs包,它起了作用:)
https://github.com/tweenjs/tween.js
安装了软件包
npm i @tweenjs/tween.js@^18
进口吐温
import * as TWEEN from '@tweenjs/tween.js'
https://stackoverflow.com/questions/72781782
复制相似问题