-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.36 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
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="/favicon.ico">
<title>ChatGPT | OVINC</title>
<script src="/extra-assets/js/cos-js-sdk-v5.min.js?v=20240306083000"></script>
<script src="/extra-assets/js/TJCaptcha.js?v=20241104174046"></script>
<link rel="stylesheet" href="/extra-assets/css/katex.min.css?v=20241219134000">
<script src="/extra-assets/js/katex.min.js?v=20241219134000"></script>
<link rel="stylesheet" href="/extra-assets/css/fira.code.min.css?v=20250101202500">
<style>
:root {
--vh: 1vh;
}
</style>
<script>
!(function (n, e) {
function setViewHeight() {
const windowVH = e.innerHeight / 100
n.documentElement.style.setProperty('--vh', windowVH + 'px')
}
const i = 'orientationchange' in window ? 'orientationchange' : 'resize'
n.addEventListener('DOMContentLoaded', setViewHeight)
e.addEventListener(i, setViewHeight)
})(document, window)
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>