-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (55 loc) · 2.76 KB
/
index.html
File metadata and controls
60 lines (55 loc) · 2.76 KB
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
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Primary Meta Tags -->
<title>Clash Config - Subscription Configuration Tool</title>
<meta name="title" content="Clash Config Converter - Subscription Configuration Tool" />
<meta
name="description"
content="A powerful tool to convert and manage Clash proxy configurations. Support subscription conversion, rule customization, and DNS configuration."
/>
<meta
name="keywords"
content="clash, clash config, proxy, subscription converter, clash meta, vpn config, proxy rules, singbox"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://clash.jctaoo.com" />
<meta property="og:title" content="Clash Config Converter - Subscription Configuration Tool" />
<meta
property="og:description"
content="A powerful tool to convert and manage Clash proxy configurations. Support subscription conversion, rule customization, and DNS configuration."
/>
<meta property="og:image" content="/og.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://clash.jctaoo.com" />
<meta property="twitter:title" content="Clash Config Converter - Subscription Configuration Tool" />
<meta
property="twitter:description"
content="A powerful tool to convert and manage Clash proxy configurations. Support subscription conversion, rule customization, and DNS configuration."
/>
<meta property="twitter:image" content="/og.png" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Theme Color -->
<meta name="color-scheme" content="light dark" />
<!-- Light/Dark theme-color for browser UI -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#0a0a0a" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="ClashConfig" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/client/main.tsx"></script>
</body>
</html>