-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
53 lines (52 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>NestJs Undici</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="description"
content="Undici utilities module based on the @nodejs undici package 🌐"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
/>
<link
rel="icon"
type="image/png"
href="https://d33wubrfki0l68.cloudfront.net/e937e774cbbe23635999615ad5d7732decad182a/26072/logo-small.ede75a6b.svg"
/>
<link
rel="icon"
type="image/png"
href="https://d33wubrfki0l68.cloudfront.net/e937e774cbbe23635999615ad5d7732decad182a/26072/logo-small.ede75a6b.svg"
/>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'NestJs Undici',
repo: 'https://github.com/hebertcisco/nestjs-undici',
loadSidebar: 'docsify/sidebar.md',
auto2top: true,
subMaxLevel: 3,
maxLevel: 3,
themeColor: '#ea2845',
noCompileLinks: ['benchmarks/.*'],
relativePath: true,
};
</script>
<!-- Docsify v4 -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"
integrity="sha256-ycM1gQUpS76Yjdc8fQA5WlyWGQ7YtDR68v+cbMEhdLY="
crossorigin="anonymous"
></script>
</body>
</html>