-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 726 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#000000" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="any" href="/favicon.png" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon.png" />
<title>Tauri App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app" class="isolate disable-select"></div>
<script type="module" src="/src-app/main.tsx"></script>
</body>
</html>