-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
99 lines (94 loc) · 3.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Code coverage done right. Highly integrated with GitHub, Bitbucket and GitLab."
/>
<meta name="author" content="@codecov" />
<meta
name="keywords"
content="code, coverage, analysis, testing, development, qa, analyzer"
/>
<meta property="og:url" content="https://codecov.io" />
<meta property="og:site_name" content="Codecov" />
<meta property="og:title" content="Code coverage done right." />
<meta
property="og:description"
content="Hosted coverage report highly integrated with GitHub, Bitbucket and GitLab. Awesome pull request comments to enhance your QA."
/>
<meta
property="og:image"
content="https://storage.googleapis.com/codecov-cdn/static/Codecov-icon-600x600.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="150" />
<meta property="og:image:height" content="150" />
<meta property="twitter:site" content="codecov" />
<meta property="twitter:site:id" content="122181800" />
<meta property="twitter:creator" content="codecov" />
<meta property="twitter:creator:id" content="122181800" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="Codecov" />
<meta
property="twitter:description"
content="Code coverage done right. Hosted coverage report highly integrated with GitHub, Bitbucket and GitLab. Awesome pull request comments to enhance your QA."
/>
<meta
property="twitter:image:src"
content="https://storage.googleapis.com/codecov-cdn/static/Codecov-icon-600x600.png"
/>
<meta property="twitter:image:width" content="150" />
<meta property="twitter:image:height" content="150" />
<meta
name="description"
content="Code coverage done right. Hosted coverage report highly integrated with GitHub, Bitbucket and GitLab. Awesome pull request comments to enhance your QA."
/>
<link rel="apple-touch-icon" href="/logo-192x192.png" />
<link rel="manifest" href="/manifest.json" />
<title>Codecov</title>
<script>
window.addEventListener('vite:preloadError', (event) => {
window.location.reload()
})
</script>
<% if(isProduction) { %>
<script>
;(function (apiKey) {
;(function (p, e, n, d, o) {
var v, w, x, y, z
o = p[d] = p[d] || {}
o._q = o._q || []
v = ['initialize', 'identify', 'updateOptions', 'pageLoad', 'track']
for (w = 0, x = v.length; w < x; ++w)
(function (m) {
o[m] =
o[m] ||
function () {
o._q[m === v[0] ? 'unshift' : 'push'](
[m].concat([].slice.call(arguments, 0))
)
}
})(v[w])
y = e.createElement(n)
y.async = !0
y.src = 'https://cdn.pendo.io/agent/static/' + apiKey + '/pendo.js'
z = e.getElementsByTagName(n)[0]
z.parentNode.insertBefore(y, z)
})(window, document, 'script', 'pendo')
})('<%= REACT_APP_PENDO_KEY %>')
</script>
<% } %>
</head>
<body class="text-sm text-ds-default-text bg-ds-background">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>