This commit is contained in:
2025-07-22 10:06:05 +02:00
commit 9db6d9c811
5 changed files with 1214 additions and 0 deletions

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon_white.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ThreeJS-Template</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#container {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="module" src="/main.js"></script>
</body>
</html>