Error Loading GLTF Model on Website

Hello everyone!

I’m encountering an issue while attempting to upload a GlTF model to my scene. Everything works correctly when I use a previous GlTF model, but it refuses to work with this new one. The scene doesn’t load, and I receive an error in the console that states:

“GLTFLoader.js:198 Error: THREE.GLTFLoader: Failed to load buffer “computer.bin”.
at Object.onError (GLTFLoader.js:2785:13)
at three.module.js:40739:39”

Additionally, the scene with the new model works fine when I run it locally, the error appears when I upload it to the website.

I’ll attach the model with the issue, and the website is renatacampuzano.com in case that helps.

Thank you in advance for the help!

computer.gltf (396.0 KB)

it’s better to use glb instead of gltf. gltf is a container format, it usually refers to external files. yours for instance is useless without computer.bin. even if computer.bin is present in your project, you need to instruct the loader as to the whereabouts of the extra files. so better not go through all the hassle and use glb, it combines all data in one and is also smaller. :+1:

It did work with the glb.
Thank you so much!