-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 776 Bytes
/
index.html
File metadata and controls
21 lines (18 loc) · 776 Bytes
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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="robots" content="index, follow" />
<meta name="author" content="Tanner Middleton" />
<meta name="description" content="An open source minimal LLM chat web application." />
<link rel="icon" type="image/png" href="/images/web/icon-512-maskable.png" sizes="512x512" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<title>MinimalChat</title>
</head>
<body>
<div id="app"></div>
<script defer type="module" src="/src/main.js"></script>
</body>
</html>