This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
/
index.html
51 lines (51 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<!-- customize head -->
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="https://cdn.jsdelivr.net/gh/alist-org/logo@main/logo.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="referrer" content="no-referrer" />
<meta name="generator" content="Alist V2" />
<script src="https://g.alicdn.com/IMM/office-js/1.1.5/aliyun-web-office-sdk.min.js"></script>
<script>
window.matchMediaBak = window.matchMedia;
window.matchMedia = function (e) {
let result = window.matchMediaBak(e);
if (!result.addEventListener) {
result.addEventListener = function (event, listener) {
result.addListener(listener);
};
result.removeEventListener = function (event, listener) {
result.removeListener(listener);
};
}
return result;
};
this.globalThis || (this.globalThis = this);
</script>
<title>Loading...</title>
</head>
<body>
<script>
window.ALIST = {
cdn: "/CDN_URL/",
subfolder: "SUB_FOLDER",
api: undefined,
};
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>
<strong
>We're sorry but alist doesn't work properly without JavaScript enabled.
Please enable it to continue.</strong
>
</noscript>
<!-- customize body -->
</body>
</html>