forked from soulmachine/algorithm-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
72 lines (71 loc) · 1.96 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
72 lines (71 loc) · 1.96 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
const remarkMath = require("remark-math");
const rehypeKatex = require("rehype-katex");
module.exports = {
title: "算法珠玑",
tagline: "以少胜多",
url: "https://soulmachine.github.io",
baseUrl: "/",
onBrokenLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "soulmachine", // Usually your GitHub org/user name.
projectName: "algorithm-essentials", // Usually your repo name.
stylesheets: [
// from https://github.com/KaTeX/KaTeX#starter-template
{
href: "https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css",
type: "text/css",
integrity:
"sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X",
crossorigin: "anonymous",
},
],
themeConfig: {
navbar: {
title: "算法珠玑",
logo: {
alt: "算法珠玑",
src: "img/logo.svg",
},
items: [
{
href: "https://github.com/soulmachine/algorithm-essentials",
label: "GitHub",
position: "right",
},
],
},
algolia: {
apiKey: "02f7be89c899e6289492d2f3822fa580",
indexName: "algorithm_essentials_soulmachine",
searchParameters: {}, // Optional (if provided by Algolia)
},
googleAnalytics: {
trackingID: "UA-7583537-12",
},
gtag: {
trackingID: "UA-7583537-12",
},
prism: {
theme: require("prism-react-renderer/themes/github"),
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
routeBasePath: "/", // docs-only mode
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl:
"https://github.com/soulmachine/algorithm-essentials/edit/master/",
remarkPlugins: [remarkMath],
rehypePlugins: [[rehypeKatex, { strict: false }]],
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};