forked from AutoParams/autoparams.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.ts
109 lines (101 loc) · 3.06 KB
/
docusaurus.config.ts
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
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',
},
blog: false,
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'img/autoparams.png',
metadata: [
{ name: 'description', content: 'AutoParams is a versatile test data generator designed for parameterized tests in Java and Kotlin, drawing inspiration from AutoFixture.' },
{ 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',
},
{
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.oceanicNext,
darkTheme: prismThemes.gruvboxMaterialDark,
additionalLanguages: ['java', 'kotlin', 'gradle'],
},
algolia: {
appId: 'XWNJDQZOP3',
apiKey: '0e68b2bcc08a9def8ee39b61496b9d83',
indexName: 'autoparamsio',
contextualSearch: true,
},
} satisfies Preset.ThemeConfig,
future: {
experimental_faster: true,
}
};
export default config;