Привет, кто-нибудь знает, как правильно указать путь к 3d-модели в django. Как и в какую папку я должен положить свою 3d модель. Кстати, я использую три js.
Ошибка Не удалось загрузить ресурс: сервер ответил с состоянием 404 (не найдено)
<code>{% load static %}
<!DOCTYPE html>
<html>
<head>
<title> 3D Model </title>
<link rel="stylesheet" type="text/css" href="{% static 'css/cona.css' %}">
</head>
<body>
<canvas id="cona"> </canvas>
<script src="{% static 'js/three.min.js' %}"></script>
<script src="{% static 'js/OrbitControls.js' %}"></script>
<script src="{% static 'js/GLTFLoader.js'%}"></script>
<script src="{% static 'js/donutCopy.js' %}"></script>
<script >
var icing="{% static 'INO.glb'%}"
</script>
</body>
</html>