-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
23 lines (20 loc) · 953 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>8thWall Vue3 Threejs Boilerplate</title>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<!-- XR Extras - provides utilities like load screen, error handling, and gesture control helpers.
See https://github.com/8thwall/web/tree/master/xrextras/ -->
<script src="//cdn.8thwall.com/web/xrextras/xrextras.js"></script>
<!-- Landing Pages - see https://www.8thwall.com/docs/web/#landing-pages -->
<script src="//cdn.8thwall.com/web/landing-page/landing-page.js"></script>
<!-- 8th Wall Engine - Replace the app key here with your own app key -->
<script async src="//apps.8thwall.com/xrweb?appKey=%VITE_8THWALL_APP_KEY%"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>