-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathdocusaurus.config.js
112 lines (109 loc) · 3.17 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
// @ts-check
require('dotenv').config();
const { docs } = require('./docs');
const { redirects } = require('./redirects');
const { navbar } = require('./navbar');
const { footer } = require('./footer');
const openApiPluginConfig = require('./apiSpecGeneration/pluginConfig');
/** @type {import("@docusaurus/types").Config} */
const config = {
title: 'Tolgee',
tagline: 'Localization for everyone',
url: 'https://docs.tolgee.io',
baseUrl: '/',
onBrokenLinks: 'throw',
favicon: 'img/favicon.svg',
onBrokenMarkdownLinks: 'warn',
organizationName: 'Tolgee',
projectName: 'Tolgee',
themes: ['docusaurus-theme-openapi-docs'],
themeConfig: {
navbar,
footer,
algolia: {
appId: 'PWTO4FHFDY',
apiKey: '22a72d1546c01b9b386c0257604f2a38',
indexName: 'tolgee',
searchParameters: {}, // Optional (if provided by Algolia)
searchPagePath: false,
},
prism: {
additionalLanguages: ['icu-message-format'],
},
zoom: {
selector: '.zoomable-image',
background: {
light: 'rgb(255, 255, 255)',
dark: '#182230',
},
config: {
// options you can specify via https://github.com/francoischalifour/medium-zoom#usage
},
},
},
presets: [
[
"classic",
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
docItemComponent: "@theme/ApiItem", // Derived from docusaurus-theme-openapi
editUrl: 'https://github.com/tolgee/documentation/tree/main',
},
blog: {
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
showReadingTime: true,
editUrl: 'https://github.com/tolgee/documentation/tree/main',
feedOptions: {
type: 'all',
copyright: `Copyright © ${new Date().getFullYear()} Tolgee`,
},
archiveBasePath: null,
},
theme: {
customCss: "./src/css/custom.css",
},
}
],
],
plugins: [
'docusaurus-plugin-image-zoom',
['@docusaurus/plugin-client-redirects', redirects],
async function tailwind() {
return {
name: 'docusaurus-tailwindcss',
configurePostCss(postcssOptions) {
postcssOptions.plugins = [
require('tailwindcss'),
require('autoprefixer'),
];
return postcssOptions;
},
};
},
openApiPluginConfig,
...docs,
],
customFields: {
googleTrackingId: process.env.DOCUSAURUS_GOOGLE_TRACKING_ID,
cookieYesId: process.env.DOCUSAURUS_COOKIE_YES_ID,
utmCookieDomain: process.env.DOCUSAURUS_UTM_COOKIE_DOMAIN || 'tolgee.io',
chatwootToken: process.env.DOCUSAURUS_CHATWOOT_TOKEN,
hotjarId: process.env.DOCUSAURUS_HOTJAR_ID,
typebotToken: process.env.DOCOSAURUS_TYPEBOT_TOKEN,
posthogToken: process.env.DOCOSAURUS_POSTHOG_TOKEN,
posthogApiHost:
process.env.DOCOSAURUS_POSTHOG_API_HOST || 'https://app.posthog.com',
plausibleTrackingDomain: process.env.DOCOSAURUS_PLAUSIBLE_TRACKING_DOMAIN,
},
scripts: [
{
src: '/scripts/cookieconsent.js',
defer: true,
async: true,
},
],
onBrokenAnchors: 'throw'
};
module.exports = config;