forked from jhipster/jhipster.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.ts
185 lines (172 loc) · 5.01 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import { themes as prismThemes } from 'prism-react-renderer';
import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
import redirectsPlugin from './redirects.config';
const baseUrl = process.env.SITE_BASE_URL ?? '/';
const isDocsArchive = process.env.IS_DOCS_ARCHIVE === 'true';
const archiveDocsThemeConfig = {
announcementBar: {
id: 'docs-archive',
content:
'This documentation is for an older version of JHipster. Click <a href="https://jhipster.tech/">here</a> for the current version of the documentation.',
isCloseable: false,
},
} satisfies Preset.ThemeConfig;
const config: Config = {
noIndex: isDocsArchive,
title: 'JHipster',
favicon: 'images/favicon.ico',
// Set the production url of your site here
url: 'https://www.jhipster.tech',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl,
// GitHub pages deployment config.
deploymentBranch: 'gh-pages',
organizationName: 'jhipster',
projectName: 'jhipster.github.io',
// onBrokenLinks: 'throw',
onBrokenLinks: 'ignore',
// onBrokenMarkdownLinks: 'warn',
onBrokenMarkdownLinks: 'ignore',
onBrokenAnchors: 'ignore',
// 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'],
},
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
// Remove this to remove the "edit this page" links.
editUrl: 'https://github.com/jhipster/jhipster.github.io/tree/main/',
routeBasePath: '/',
showLastUpdateTime: true,
versions: {
current: {
path: '/',
},
},
onlyIncludeVersions: ['current'],
},
blog: false,
theme: {
customCss: './src/scss/custom.scss',
},
sitemap: {
changefreq: 'daily',
lastmod: 'datetime',
ignorePatterns: ['/modules/marketplace/details/\\*', '/search'],
},
gtag: {
trackingID: 'G-4L9RJVPGJT',
anonymizeIP: true,
},
} satisfies Preset.Options,
],
],
plugins: [
'docusaurus-plugin-sass',
redirectsPlugin,
'./src/plugins/google-fonts.ts',
'./src/plugins/module-details.ts',
'plugin-image-zoom',
],
themeConfig: {
metadata: [
{ name: 'author', content: 'JHipster Team' },
{ name: 'twitter:site', content: '@jhipster' },
{
name: 'google-site-verification',
content: 'JSA7VC5gSwD5KKbXlxK8F9rXJtC91rKJq0aWhfpBC0k',
},
],
image: 'images/twitter-card.png',
navbar: {
logo: {
alt: 'JHipster Logo',
src: 'images/logo/logo-light.svg',
srcDark: 'images/logo/logo-dark.svg',
width: 140,
height: 32,
},
items: [
// {
// type: 'docSidebar',
// sidebarId: 'docsSidebar',
// position: 'right',
// label: 'Docs',
// },
{
to: '/getting-started',
label: 'Docs',
position: 'right',
},
{
to: '/modules/marketplace/',
label: 'Marketplace',
position: 'right',
},
{
to: '/team/',
label: 'Team',
position: 'right',
},
{
to: '/sponsors/',
label: 'Sponsors',
position: 'right',
},
{
href: 'https://start.jhipster.tech/jdl-studio/',
label: 'JDL Studio',
position: 'right',
},
],
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
additionalLanguages: ['java', 'bash', 'yaml', 'gradle', 'diff'],
},
algolia: {
appId: 'BH4D9OD16A',
apiKey: '9bd47d3de4af6f3662fd11a7f0e38819',
indexName: 'jhipster',
// Temporary disabled, need setup https://docusaurus.io/docs/search#algolia-troubleshooting
contextualSearch: false,
},
imageZoom: {
// CSS selector to apply the plugin to, defaults to '.markdown img'
// exclude images from zoom with "italicized" markdown, e.g., _![](/img/portal/new.png)_
selector: '.markdown :not(em) > img',
},
...(isDocsArchive ? archiveDocsThemeConfig : {}),
} satisfies Preset.ThemeConfig,
headTags: [
// JSON+LD
{
tagName: 'script',
attributes: {
type: 'application/ld+json',
},
innerHTML: JSON.stringify({
'@context': 'https://schema.org/',
'@type': 'Organization',
name: 'JHipster',
url: 'https://www.jhipster.tech',
logo: 'https://www.jhipster.tech/images/logo/logo.svg',
sameAs: [
'https://x.com/jhipster',
'https://github.com/jhipster/generator-jhipster',
],
}),
},
],
};
export default config;