Basic 3D Model Not Showing Up At All On Simple Webpage

Hello, I’m having some trouble with Model-Viewer in Glitch.com. I have an index.html, script.js, style.css file, with an assets folder. My index.html code is below:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>model-viewer</title>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" href="style.css">
    
    <script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
    
    <style>
      model-viewer {
        width: 400px;
        height: 600px;
        margin: 0 auto;
      }
    </style>

  </head> 
  
  <body>
    <model-viewer src="https://cdn.glitch.com/db911cdb-a190-462a-a6ae-fd9c5aa7e892%2FLightBulb_01.gltf?v=1610761837542"></model-viewer>
  </body>
</html>

The src for the model comes from my assets folder, where I uploaded, and tried, both the original and updated versions of the glTF file from this Poly.Google page: https://poly.google.com/view/3K0T24-pAro

When I open my page, I can tell there is a model viewer window (by the loading bar) at the width, height, and margin I specified, but the model does not show up. Any suggestions would be appreciated :smiley:

Did you check devtools and the Network panel for any errors?