-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.37 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
<!doctype html>
<html data-tauri-drag-region>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>F-OH Lite</title>
<meta itemprop="name" content="F-OH Lite" />
<meta name="description" content="开源应用商店 F-OH 的第三方 PWA 版本" />
<meta name="author" content="Jesse205" />
<meta name="keywords" content="F-OH,F-OH Lite,F-OH PWA,OpenHarmony,应用商店,软件商城" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#0A59F7" />
<link rel="shortcut icon" href="/favicon.ico" />
<style>
/* 防止加载初级阶段显示白屏 */
html {
color-scheme: light;
background-color: rgb(var(--v-theme-background, 255, 255, 255));
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
background-color: rgb(var(--v-theme-background, 0, 0, 0));
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>