forked from cheshire-cat-ai/admin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 914 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
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cheshire Cat</title>
</head>
<body>
<noscript>
<strong>
We're sorry but the app doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<!-- Vue app will be mounted here -->
<div id="app"></div>
<!--
Default info on how to connect with core.
This will be overridden when the admin is served from core
-->
<script>
window.catCoreConfig = {
"CORE_HOST": "localhost",
"CORE_PORT": "1865",
"CORE_USE_SECURE_PROTOCOLS": false,
"API_KEY": null,
}
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>