forked from NFDI4Chem/knowledge_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
131 lines (124 loc) · 4.23 KB
/
docusaurus.config.js
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
/** @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 subtitle =
"A place for all knowledge regarding Research Data Management (RDM) in Chemistry";
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: {
subtitle: subtitle,
description: description,
},
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "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>
`,
},
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",
},
},
],
],
themes: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
highlightSearchTermsOnTargetPage: true,
},
],
],
};
export default config;