-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 3.83 KB
/
index.html
File metadata and controls
74 lines (65 loc) · 3.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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" />
<!-- Basic Meta Tags -->
<title>Hagicode Docker Compose Builder - Visual Docker Compose Generator</title>
<meta name="description" content="A powerful visual tool for creating and managing Docker Compose configurations. Build, customize, and export your docker-compose.yml files with an intuitive interface." />
<meta name="keywords" content="docker, docker compose, docker-compose, yaml generator, docker builder, container orchestration, devops tools, docker ui, compose builder" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Canonical URL -->
<link rel="canonical" href="https://builder.hagicode.com" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Hagicode Docker Compose Builder - Visual Docker Compose Generator" />
<meta property="og:description" content="A powerful visual tool for creating and managing Docker Compose configurations. Build, customize, and export your docker-compose.yml files with an intuitive interface." />
<meta property="og:image" content="https://builder.hagicode.com/og-image.png" />
<meta property="og:url" content="https://builder.hagicode.com" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en" />
<meta property="og:site_name" content="Hagicode Docker Compose Builder" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Hagicode Docker Compose Builder - Visual Docker Compose Generator" />
<meta name="twitter:description" content="A powerful visual tool for creating and managing Docker Compose configurations. Build, customize, and export your docker-compose.yml files with an intuitive interface." />
<meta name="twitter:image" content="https://builder.hagicode.com/og-image.png" />
<!-- Alternate Language Links -->
<link rel="alternate" hreflang="en" href="https://builder.hagicode.com" />
<link rel="alternate" hreflang="zh-CN" href="https://builder.hagicode.com?lang=zh-CN" />
<link rel="alternate" hreflang="x-default" href="https://builder.hagicode.com" />
<!-- Baidu Analytics - Production Only (Disabled, migrated to 51LA) -->
<!-- Kept for potential rollback -->
<!--
<script>
(function() {
// Default Baidu Analytics ID for builder.hagicode.com
// Falls back to this ID when VITE_BAIDU_ANALYTICS_ID is not configured
const defaultId = '26c9739b2f3cddbe36c649e0823ee2de';
// Only load in production (checked at runtime via import.meta.env.PROD)
// Note: In Vite builds, import.meta.env.PROD is true for production builds
if (typeof import.meta !== 'undefined' && import.meta.env && import.meta.env.PROD) {
const analyticsId = import.meta.env.VITE_BAIDU_ANALYTICS_ID || defaultId;
// Prevent duplicate script loading
if (!document.querySelector('script[src^="https://hm.baidu.com/hm.js?"]')) {
var hm = document.createElement('script');
hm.src = 'https://hm.baidu.com/hm.js?' + analyticsId;
hm.async = true;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(hm, s);
}
}
})();
</script>
-->
<!-- 51LA Analytics - Always loaded -->
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>
LA.init({id: "L6b88a5yK4h2Xnci", ck: "L6b88a5yK4h2Xnci", autoTrack: true, hashMode: true, screenRecord: true});
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>