-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
233 lines (219 loc) · 6.47 KB
/
docusaurus.config.js
File metadata and controls
233 lines (219 loc) · 6.47 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
// const lightCodeTheme = require('prism-react-renderer/themes/github');
// const darkCodeTheme = require('prism-react-renderer/themes/dracula');
const {themes} = require('prism-react-renderer');
const lightTheme = themes.github;
const darkTheme = themes.dracula;
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'OpenBLD.net DNS - Block advertising, tracking, telemetry, malicious domains and more for free',
tagline: 'Free DNS - with DoT, DoH - HTTP/2, TLSv1.2, TLSv1.3, GeoDNS',
favicon: 'img/favicon.ico',
// Set the production url of your site here
// url: 'https://m0zgen.github.io',
url: 'https://openbld.net',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
// baseUrl: '/openbld.net/',
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'm0zgen', // Usually your GitHub org/user name.
projectName: 'openbld.net', // Usually your repo name.
deploymentBranch: 'gh-pages',
trailingSlash: true,
onBrokenLinks: 'log',
markdown: {
hooks: {
onBrokenMarkdownLinks: 'warn', // or 'throw', 'ignore'
},
},
// Even if you don't use internalization, 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',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// sidebarCollapsible: false,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/m0zgen/openbld.net/edit/dev/',
},
blog: {
blogTitle: 'OpenBLD.net Blog',
blogDescription: 'OpenBLD.net news and updates',
postsPerPage: 6,
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
sitemap: {
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
},
}),
],
],
// Connect Tailwind
plugins: [
async function myPlugin(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
// Appends TailwindCSS and AutoPrefixer.
postcssOptions.plugins.push(require("tailwindcss"));
postcssOptions.plugins.push(require("autoprefixer"));
return postcssOptions;
},
};
},
],
customFields: {
serviceName: 'OpenBLD.net - ',
serviceDescription: 'fast, free DNS that blocks ads, trackers, malware — with DoH, DoT, GeoDNS',
siteDescription: 'OpenBLD.net — ultra-fast DNS with ad blocking and proactive cybersecurity. Be yourself, be focused.',
// Hero, Header title
titleHomeHeader: 'Fast, clean, secure DNS: Block ads, telemetry, cybersecurity threats',
},
// scripts: [
// 'https://buttons.github.io/buttons.js',
// 'https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js',
// './js/code-block-buttons.js',
// ],
// stylesheets: ['./css/code-block-buttons.css'],
i18n: {
defaultLocale: 'en',
locales: ['en', 'ru', 'kz'],
path: 'i18n',
localeConfigs: {
en: {
label: 'English',
},
ru: {
label: 'Русский',
},
kz: {
label: 'Қазақша',
},
}
},
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: 'img/open-bld-og-logo-1200.jpg',
navbar: {
title: 'OpenBLD.net DNS',
logo: {
alt: 'OpenBLD.net Logo',
src: 'img/openbld-navbar-logo.webp',
width: 32,
height: 32,
},
items: [
{
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
position: 'left',
label: 'Docs',
},
{to: '/blog', label: 'Blog', position: 'left'},
{
href: '/docs/overwiew/how-it-works',
label: 'How it works',
position: 'right',
},
{
href: 'https://github.com/m0zgen',
label: 'My GitHub',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Intro',
to: '/docs/intro',
},
{
label: 'Get Started',
to: '/docs/category/get-started',
},
{
label: 'Disclaimer',
to: '/docs/disclaimer',
}
],
},
{
title: 'Social',
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/users/1928123/m0zgen?tab=profile',
},
{
label: 'LinkedIn',
href: 'https://www.linkedin.com/company/openbld',
},
{
label: 'Telegram',
href: 'https://t.me/openbld',
},
],
},
{
title: 'More',
items: [
{
label: 'Blog',
to: '/blog',
},
{
label: 'GitHub',
href: 'https://github.com/m0zgen',
},
{
label: 'Laboratory',
href: 'https://lab.sys-adm.in/',
},
],
},
],
copyright: `© 2019-${new Date().getFullYear()} OpenBLD.net.`,
},
prism: {
theme: lightTheme,
darkTheme: darkTheme,
},
colorMode: {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: true,
},
}),
};
module.exports = config;