forked from NFDI4Chem/knowledge_base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
162 lines (155 loc) · 5.35 KB
/
docusaurus.config.js
File metadata and controls
162 lines (155 loc) · 5.35 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/** @type {import('@docusaurus/types').Config} */
import { themes as prismThemes } from "prism-react-renderer";
const announcementBarActive = false; // set to true to activate the announcement bar
const announcementBar = announcementBarActive
? require("./announcementBar.json")
: {};
const title = "NFDI4Chem Knowledge Base";
const description =
"Supporting scientists to digitalise all steps of chemical research: to collect, store, process, analyse, publish, and reuse research data";
const url = "https://knowledgebase.nfdi4chem.de/";
const baseUrl = "/knowledge_base/";
const navbar = require("./navbar.json");
const footerLinks = require("./footer.json");
// Use for stagging:
// const baseUrl = '/staging/knowledge_base_matomo/';
// const baseUrl = "/staging/knowledge_base/";
const config = {
title: title,
url: url,
baseUrl: baseUrl,
customFields: {
description: description,
},
onBrokenLinks: "warn",
markdown: {
hooks: {
onBrokenMarkdownLinks: "warn",
onBrokenMarkdownImages: "warn",
},
},
favicon: "img/favicon.png",
organizationName: "NFDI4Chem", // Usually your GitHub org/user name.
projectName: "knowledge_base", // Usually your repo name.
trailingSlash: "true",
i18n: {
defaultLocale: "en",
locales: ["en", "de"],
localeConfigs: {
en: {
htmlLang: "en-GB",
},
},
},
plugins: ["docusaurus-plugin-matomo"],
themeConfig: {
...(Object.keys(announcementBar).length > 0 && {
announcementBar: announcementBar,
}),
metadata: [
{
name: "google-site-verification",
content: "wgYVjYSe_T6v6BPPM6fPo1ffl7MYYnuVw-h9RoAYfM0",
},
],
matomo: {
matomoUrl: "https://knowledgebase.nfdi4chem.de/matomo/",
siteId: "1",
phpLoader: "matomo.php",
jsLoader: "matomo.js",
},
navbar: navbar,
footer: {
style: "dark",
links: [
{
items: [
{
html:
`
<a href="https://www.dfg.de" target="_blank">
<img src="` +
baseUrl +
`img/dfg_logo_schriftzug_weiss_foerderung_en.png" />
</a>
<p>NFDI4Chem is funded by DFG<br>Project Number 441958208</p>
`,
},
],
},
...footerLinks,
],
copyright: `
<div class="footer__copyright row" style="justify-content: center">
<div class="cell" style="padding: 1rem;" >
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"></a>
</div>
<div class="cell" style="padding: 0.1rem; text-align: left;" >
Licensed under a <a class="footer__link-item" rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons BY-SA 4.0</a> License, if not stated otherwise.<br />
Copyright © ${new Date().getFullYear()} NFDI4Chem. Built with Docusaurus.
</div>
</div>
`,
},
algolia: {
appId: "K32QMEOD1G",
apiKey: "6ba494183b866a52e3dfd54388379f77",
indexName: "nfdi4chem_knowledge_base",
contextualSearch: true,
// replaceSearchResultPathname: {
// from: "/knowledge_base/",
// to: "/",
// },
// Optional: whether you want to use the new Ask AI feature (undefined by default)
// askAi: "YOUR_ALGOLIA_ASK_AI_ASSISTANT_ID",
},
colorMode: { disableSwitch: true },
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
},
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
{
docs: {
sidebarPath: "./sidebars.js",
editUrl:
"https://github.com/NFDI4Chem/knowledge_base/tree/main/",
},
theme: {
customCss: "./src/css/custom.css",
},
sitemap: {
lastmod: "datetime",
ignorePatterns: ["/tags/**"],
createSitemapItems: async (params) => {
const { defaultCreateSitemapItems, ...rest } = params;
const items = await defaultCreateSitemapItems(rest);
return items.filter(
(item) => !item.url.includes("/page/")
);
},
},
},
],
],
// themes: [
// [
// require.resolve("@easyops-cn/docusaurus-search-local"),
// {
// hashed: true,
// highlightSearchTermsOnTargetPage: true,
// },
// ],
// ],
future: {
experimental_faster: {
rspackBundler: true,
rspackPersistentCache: true,
},
},
};
export default config;