forked from webaverse-studios/CharacterCreator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
21 lines (19 loc) · 874 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="HandheldFriendly" content="true" />
<title>Character Studio</title>
<!-- <script src="//cdn.8thwall.com/web/xrextras/xrextras.js"></script>
<script async src="//apps.8thwall.com/xrweb?appKey=lGxGiv5DGWda9bscMwgrqe0B4teDiezQwPazx0XiWOgwH71NPRZA3B1rIzesZ6TgBc7WVU"></script> -->
</head>
<body>
<canvas id="editor-scene" style="position: fixed; top: 0; left: 0;" width="100%" height="100%"></canvas>
<div id="root" style="overflow: hidden">
</div>
<link rel="stylesheet" href="/public/style.css" />
<script type="module" src="/src/Main.jsx"></script>
</body>
</html>