forked from BorrProject/borrproject.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
212 lines (201 loc) · 5.91 KB
/
docusaurus.config.js
File metadata and controls
212 lines (201 loc) · 5.91 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
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
import {themes as prismThemes} from 'prism-react-renderer';
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'The Borr Project',
tagline: 'Empowering learners to master college curricula through free resources!',
favicon: 'img/favicon.ico',
future: {
v4: true,
experimental_faster: true,
},
// Set the production url of your site here
url: 'https://borrproject.github.io',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
trailingSlash: true,
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'BorrProject', // Usually your GitHub org/user name.
projectName: 'borrproject.github.io', // Usually your repo name.
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'],
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: './sidebars.js',
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/BorrProject/borrproject.github.io/edit/main/',
routeBasePath: '/',
showLastUpdateAuthor: true,
showLastUpdateTime: true,
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/BorrProject/borrproject.github.io/edit/main/',
blogTitle: 'Borr Project',
blogDescription: 'The Borr Project Blog.',
},
theme: {
customCss: './src/css/custom.css',
},
}),
],
],
plugins: [require.resolve("docusaurus-plugin-image-zoom"),
[
'@docusaurus/plugin-pwa',
{
debug: false,
injectManifestConfig: {
globPatterns: ['**/*.{webp}'],
},
offlineModeActivationStrategies: [
'appInstalled',
'standalone',
'queryString',
],
pwaHead: [
{
tagName: 'link',
rel: 'icon',
href: '/img/borr.png',
},
{
tagName: 'link',
rel: 'manifest',
href: '/manifest.json',
},
{
tagName: 'meta',
name: 'theme-color',
content: 'rgb(255, 255, 255)',
},
{
tagName: 'meta',
name: 'apple-mobile-web-app-capable',
content: 'yes',
},
{
tagName: 'meta',
name: 'apple-mobile-web-app-status-bar-style',
content: '#000',
},
{
tagName: 'link',
rel: 'apple-touch-icon',
href: '/img/borr.png',
},
{
tagName: 'link',
rel: 'mask-icon',
href: '/img/borr.svg',
color: 'rgb(37, 194, 160)',
},
{
tagName: 'meta',
name: 'msapplication-TileImage',
content: '/img/borr.png',
},
{
tagName: 'meta',
name: 'msapplication-TileColor',
content: '#000',
},
],
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
colorMode: {
defaultMode: 'light',
disableSwitch: false,
respectPrefersColorScheme: true,
},
docs: {
sidebar: {
hideable: true,
autoCollapseCategories: true,
},
},
// algolia: {
// appId: '',
// apiKey: '',
// indexName: '',
// },
// Replace with your project's social card
image: 'img/borr-social-card.webp',
zoom: {},
navbar: {
hideOnScroll: true,
title: 'The Borr Project',
// logo: {
// alt: 'VirtualHub Logo',
// src: 'img/logo.webp',
// },
items: [
{
type: 'dropdown',
label: 'Curricula',
position: 'left',
items: [
{to: '/computer-science', label: 'Computer Science'},
{to: '/precollege-math', label: 'Pre-College Math'},
{to: '/data-science', label: 'Data Science'},
{to: '/math', label: 'Math'},
],
},
{to: '/getting-help', label: 'Getting Help'},
{to: '/blog', label: 'Blog'},
{
href: 'https://github.com/BorrProject/',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
// {
// href: 'https://www.youtube.com/@virtua1hub',
// position: 'right',
// className: 'header-youtube-link',
// 'aria-label': 'Youtube Channel',
// },
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} The Borr Project. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
additionalLanguages: [
'bash',
'ini',
],
},
}),
};
export default config;