forked from snowplow/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
156 lines (149 loc) · 4.52 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
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
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const sidebar = require('./sidebars')
/** @returns {import('@docusaurus/types').Config} */
async function createConfig() {
const mdxMermaid = await import('mdx-mermaid')
return {
title: 'Snowplow Documentation',
tagline:
'Build, deploy, and scale your next data creation project using Snowplow.',
url: 'https://docs.snowplow.io',
baseUrl: '/',
// reset this back to throw, set to warn so that site builds
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'throw',
favicon: 'img/favicon.ico',
trailingSlash: true,
organizationName: 'snowplow',
projectName: 'documentation',
deploymentBranch: 'main',
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
clientModules: [
require.resolve('./cookieConsent.js'),
require.resolve('./snowplow.js'),
require.resolve('./google.js'),
],
presets: [
[
'@docusaurus/preset-classic',
/** @type {import('@docusaurus/preset-classic').Options} */
{
docs: {
showLastUpdateTime: true,
editUrl: 'https://github.com/snowplow/documentation/tree/main/',
remarkPlugins: [mdxMermaid.default],
async sidebarItemsGenerator({
defaultSidebarItemsGenerator,
...args
}) {
return sidebar.swapDocItemsToLinkItems(
await defaultSidebarItemsGenerator(args),
args.docs
)
},
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
docs: {
sidebar: {
autoCollapseCategories: true,
hideable: true,
},
},
navbar: {
logo: {
alt: 'Snowplow Logo',
src: 'img/snowplow-logo.svg',
},
items: [
{
type: 'doc',
docId: 'introduction',
position: 'left',
className: 'nav-link__first',
label: 'Docs',
},
{
href: 'https://discourse.snowplow.io',
label: 'Discourse',
position: 'left',
},
{
href: 'https://github.com/snowplow/',
label: 'GitHub',
position: 'left',
},
{
to: 'https://try.snowplowanalytics.com/?utm_content=hero-cta&utm_campaign=snowplow-docs',
label: 'Try Snowplow',
className: 'snwpl-nav-button',
position: 'right',
},
{
to: 'https://go.snowplowanalytics.com/l/571483/2021-02-19/3sn5nml',
label: 'Book a demo',
className: 'snwpl-nav-button',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
label: 'Change cookie preferences',
href: '/cookie-preferences',
},
{
label: 'Terms and conditions',
href: '/terms-and-conditions',
},
],
copyright: `Copyright © ${new Date().getFullYear()} Snowplow Analytics Ltd. Built with Docusaurus.`,
},
prism: {
theme: require('prism-react-renderer/themes/dracula'),
// Docusaurus comes with a subset of commonly used languages -https://github.com/FormidableLabs/prism-react-renderer/blob/master/src/vendor/prism/includeLangs.js.
// To add syntax highlighting for additional Prism supported languages, add reference from https://prismjs.com/#supported-languages.
// NOTE: do a `yarn build` to ensure that it does build properly
additionalLanguages: [
'arduino',
'csharp',
'dart',
'docker',
'gradle',
'java',
'php',
'properties',
'r',
'ruby',
'scala',
'swift',
'brightscript',
'rust',
'toml',
'django',
'yaml',
],
},
algolia: {
appId: '9HS3C2MKTH',
apiKey: 'f22e24c1b333034a75914759b0f045c3',
indexName: 'snowplow',
contextualSearch: true,
},
}),
}
}
module.exports = createConfig