-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
137 lines (129 loc) · 3.75 KB
/
docusaurus.config.ts
File metadata and controls
137 lines (129 loc) · 3.75 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
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'AutoParams - Test Data Generator in Java and Kotlin',
tagline: 'Enhance your TDD experience!',
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://autoparams.github.io',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
organizationName: 'AutoParams', // Usually your GitHub org/user name.
projectName: 'autoparams.github.io', // Usually your repo name.
trailingSlash: false,
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en', 'ko'],
localeConfigs: {
en: {
htmlLang: 'en',
},
ko: {
htmlLang: 'ko',
},
}
},
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
lastVersion: 'current',
versions: {
current: {
label: '11.x',
}
}
},
blog: false,
theme: {
customCss: './src/css/custom.css',
},
sitemap: {
lastmod: 'date',
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
createSitemapItems: async (params) => {
const { defaultCreateSitemapItems, ...rest } = params;
const items = await defaultCreateSitemapItems(rest);
return items.filter((item) => !item.url.includes('/page/'));
},
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'img/autoparams.png',
metadata: [
{ name: 'google-site-verification', content: 'JTQC3Qse5xJxBr7GLaV4aYsN43IKAOO0pUhBayPB0wk'},
{ property: 'og:site_name', content: 'AutoParams' },
{ property: 'og:image', content: 'https://autoparams.github.io/img/autoparams.png' }
],
navbar: {
title: 'AutoParams',
logo: {
alt: 'AutoParams Logo',
src: 'img/logo.svg',
},
items: [
{
type: 'docSidebar',
sidebarId: 'docsSidebar',
position: 'left',
label: 'Docs',
},
{
href: 'https://www.javadoc.io/doc/io.github.autoparams/autoparams/latest/index.html',
position: 'left',
label: 'API Doc',
target: '_blank',
},
{
type: 'docsVersionDropdown',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
},
{
href: 'https://github.com/AutoParams/AutoParams',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} AutoParams contributors. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.nightOwl,
darkTheme: prismThemes.gruvboxMaterialDark,
additionalLanguages: ['java', 'kotlin', 'gradle'],
},
algolia: {
appId: 'XWNJDQZOP3',
apiKey: '0e68b2bcc08a9def8ee39b61496b9d83',
indexName: 'autoparamsio',
contextualSearch: true,
},
} satisfies Preset.ThemeConfig,
future: {
v4: true,
experimental_faster: true,
}
};
export default config;