-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocusaurus.config.js
126 lines (122 loc) · 3.1 KB
/
docusaurus.config.js
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
// @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 navLinks from "./navlinks";
import footerLinks from "./footerlinks";
import { themes as prismThemes } from 'prism-react-renderer';
import redirects from './redirects.js';
const config = {
title: 'Neural Magic Documentation',
tagline: 'Neural Magic provides a suite of software components to select, build, and run performant deep learning models.',
favicon: 'img/favicon.ico',
url: 'https://docs.neuralmagic.com',
baseUrl: '/',
organizationName: 'neuralmagic',
projectName: 'docs',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
markdown: {
format: 'detect',
},
plugins: [
'docusaurus-plugin-sass',
[
'@docusaurus/plugin-client-redirects',
{
fromExtensions: ['html'],
redirects: redirects,
},
],
[
'./src/plugins/scarf-tracking.js',
{},
],
[
'./src/plugins/reo-tracking.js',
{},
],
],
presets: [
[
'classic',
{
docs: {
routeBasePath: '/',
sidebarPath: './sidebars.js',
editUrl: 'https://github.com/neuralmagic/docs/tree/main',
editCurrentVersion: true,
versions: {
current: {
label: 'nightly',
banner: 'unreleased',
},
},
},
blog: false,
theme: {
customCss: './src/css/custom.scss',
},
gtag: {
trackingID: 'G-L2QW513YN1',
anonymizeIP: true,
},
},
],
],
themeConfig: {
colorMode: {
defaultMode: 'light',
disableSwitch: true,
},
docs: {
sidebar: {
autoCollapseCategories: true,
},
},
navbar: {
title: 'Docs',
logo: {
alt: 'Neural Magic Logo',
src: 'img/logo.svg'
},
items: [
{
type: 'docsVersionDropdown',
},
{
type: 'search',
position: 'right',
},
...navLinks,
],
},
footer: {
style: 'dark',
copyright: `© ${new Date().getFullYear()} Neuralmagic, Inc.`,
links: [
...footerLinks
]
},
tableOfContents: {
minHeadingLevel: 2,
maxHeadingLevel: 4,
},
prism: {
theme: prismThemes.vsDark,
additionalLanguages: ['python', 'markup', 'css', 'javascript', 'bash', 'c', 'csharp', 'cpp', 'csv', 'docker', 'dot', 'git', 'go', 'graphql', 'http', 'java', 'json', 'latex', 'log', 'makefile', 'markdown', 'objectivec', 'perl', 'php', 'powershell', 'jsx', 'tsx', 'regex', 'rest', 'ruby', 'rust', 'sass', 'scss', 'scala', 'sql', 'swift', 'typescript', 'vim', 'wiki', 'yaml'],
},
algolia: {
appId: 'CIS4HPXHOK',
apiKey: '70618dadfafecf13dd8800db83e1cf6e',
indexName: 'neuralmagic',
contextualSearch: false,
},
}
};
export default config;