Successfully loading a model using three.js GLTFLoader() with TypeScript in a nuxt.js application:
this.mGLTFLoader = new (<any>THREE).GLTFLoader();
this.mGLTFLoader.load(pPath, (gltf) => this.onLoad(gltf), (xhr) => this.onProgress(xhr), (e) => this.onError(e));
Encountering conflicts when trying to load zimjs, a JavaScript library:
TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided. at GLTFLoader.js:2000