-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpagic.config.tsx
60 lines (59 loc) · 1.24 KB
/
pagic.config.tsx
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
// @deno-types="https://cdn.pagic.org/@types/react@16.9.50/index.d.ts"
import React from "https://dev.jspm.io/react@16.13.1";
export default {
srcDir: "./examples",
outDir: "dist",
include: undefined,
exclude: [
// Dot files
"**/.*",
"pagic.config.tsx",
],
root: "/deno-x-ranking/",
theme: "docs",
plugins: ["ga"],
watch: false,
serve: false,
port: 8000,
title: "Deno X ranking",
github: "https://github.com/yoshixmk/deno-x-ranking",
head: (
<>
<link rel="stylesheet" href="/deno-x-ranking/custom.css" />
<script
async
defer
type="text/javascript"
src="/deno-x-ranking/custom.js"
>
</script>
<link rel="icon" type="" href="/deno-x-ranking/favicon.ico" />
<link rel="apple-touch-icon" href="/deno-x-ranking/favicon-192.png">
</link>
</>
),
nav: [
{
text: "Tegebu",
link: "https://www.tegebu.com/",
},
{
text: "Profile",
link: "https://yoshixmk.github.io/profile/",
},
{
text: "Twitter",
link: "https://twitter.com/yoshixmk",
},
{
text: "Qiita",
link: "https://qiita.com/yoshixmk",
},
],
tools: {
backToTop: true,
},
ga: {
id: "UA-149348992-3",
},
};