-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
23 lines (23 loc) · 1.06 KB
/
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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Semantic Workbench</title>
<meta name="description" content="Semantic Workbench for Experimenting with AI Assistants" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="apple-touch-icon" href="/assets/favicon.svg" />
<link rel="mask-icon" href="/assets/favicon.svg" color="#000000" />
<meta name="theme-color" content="#000000" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<script>
// Allow static build of React code to access env vars
// SEE https://create-react-app.dev/docs/title-and-meta-tags/#injecting-data-from-the-server-into-the-page
window.VITE_SEMANTIC_WORKBENCH_SERVICE_URL = "$VITE_SEMANTIC_WORKBENCH_SERVICE_URL";
</script>
</html>