-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
226 lines (219 loc) · 8.6 KB
/
docusaurus.config.js
File metadata and controls
226 lines (219 loc) · 8.6 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
// @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";
import commonRoomScript from "./src/scripts/commonroom.js";
import hubspotScript from "./src/scripts/hubspot.js";
const remarkReplace = require("./src/remark/remark-replace");
// Math equation plugins
const math = require("remark-math");
const katex = require("rehype-katex");
const siteRedirects = require("./site.redirects");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Weaviate Documentation",
tagline:
"Weaviate empowers developers to deliver, scalable vector search-powered apps painlessly",
favicon: "img/favicon.ico",
staticDirectories: ["static"],
// url: "https://weaviate.io",
url: "https://docs.weaviate.io",
baseUrl: "/",
trailingSlash: false,
onBrokenLinks: "warn",
clientModules: [
require.resolve('./src/components/UTM/capture.js'),
],
markdown: {
hooks: {
onBrokenMarkdownLinks: "warn",
onBrokenMarkdownImages: "throw",
},
mermaid: true,
},
i18n: {
defaultLocale: "en",
locales: ["en"],
},
headTags: [commonRoomScript, hubspotScript],
plugins: [
"docusaurus-plugin-sass",
["@docusaurus/plugin-client-redirects", siteRedirects],
[
"@scalar/docusaurus",
{
label: "",
route: "/weaviate/api/rest",
configuration: {
spec: {
url: "https://raw.githubusercontent.com/weaviate/weaviate/openapi-for-docs/openapi-specs/schema.json",
},
hideModels: true,
},
},
],
[
"@signalwire/docusaurus-plugin-llms-txt",
{
siteTitle: "Weaviate Documentation",
siteDescription:
"Comprehensive guides and references for Weaviate, the open-source vector database. " +
"Sections labeled [CODE] contain runnable multi-language code examples (Python, TypeScript, Go, Java, C#). " +
"Sections labeled [REFERENCE] contain configuration details and API specs. " +
"Sections labeled [CONCEPTS] contain theoretical explanations.",
depth: 3,
includeOrder: [
"/weaviate/connections/**",
"/weaviate/manage-collections/**",
"/weaviate/manage-objects/**",
"/weaviate/search/**",
"/weaviate/configuration/**",
"/weaviate/client-libraries/**",
"/weaviate/starter-guides/**",
"/weaviate/tutorials/**",
"/weaviate/quickstart/**",
"/weaviate/concepts/**",
"/weaviate/config-refs/**",
"/weaviate/api/**",
"/weaviate/model-providers/**",
],
optionalLinks: [
{
title: "Weaviate Python Client API Reference",
url: "https://weaviate.github.io/weaviate-python-client/",
description: "Full Python client API reference (external).",
},
{
title: "Weaviate TypeScript Client API Reference",
url: "https://weaviate.github.io/typescript-client/",
description: "Full TypeScript client API reference (external).",
},
],
content: {
//excludeRoutes: ["/contributor-guide/**"], // Throwing an error in GitHub Actions
enableMarkdownFiles: false,
routeRules: [
// Code-heavy how-to sections
{ route: "/weaviate/connections/**", categoryName: "[CODE] Connect to Weaviate" },
{ route: "/weaviate/manage-collections/**", categoryName: "[CODE] Manage Collections" },
{ route: "/weaviate/manage-objects/**", categoryName: "[CODE] Manage Objects (CRUD)" },
{ route: "/weaviate/search/**", categoryName: "[CODE] Search and Queries" },
{ route: "/weaviate/configuration/**", categoryName: "[CODE] Configuration How-Tos" },
{ route: "/weaviate/client-libraries/**", categoryName: "[CODE] Client Libraries and SDKs" },
{ route: "/weaviate/starter-guides/**", categoryName: "[CODE] Starter Guides" },
{ route: "/weaviate/tutorials/**", categoryName: "[CODE] Tutorials" },
{ route: "/weaviate/quickstart/**", categoryName: "[CODE] Quickstart" },
// Reference sections
{ route: "/weaviate/config-refs/**", categoryName: "[REFERENCE] Configuration Reference" },
{ route: "/weaviate/api/**", categoryName: "[REFERENCE] API Reference (REST, GraphQL, gRPC)" },
// Concepts sections
{ route: "/weaviate/concepts/**", categoryName: "[CONCEPTS] Architecture and Theory" },
{ route: "/weaviate/benchmarks/**", categoryName: "[CONCEPTS] Benchmarks" },
{ route: "/weaviate/best-practices/**", categoryName: "[CONCEPTS] Best Practices" },
{ route: "/weaviate/more-resources/**", categoryName: "[CONCEPTS] More Resources" },
// Other
{ route: "/weaviate/model-providers/**", categoryName: "Model Provider Integrations" },
],
},
//logLevel: 3, // Uncomment to enable debug logging
},
],
[
"@docusaurus/plugin-google-tag-manager",
{
containerId: process.env.GOOGLE_CONTAINER_ID || "None",
},
],
],
themes: ["@docusaurus/theme-mermaid"],
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars.js"),
path: "docs",
routeBasePath: "/",
editUrl: "https://github.com/weaviate/docs/tree/main/",
remarkPlugins: [remarkReplace, math],
rehypePlugins: [katex],
},
pages: {
path: "src/pages",
},
theme: {
customCss: [
require.resolve("./src/css/custom.scss"),
require.resolve("./src/css/blog-and-docs.scss"),
],
},
}),
],
],
stylesheets: [
// Add Font Awesome stylesheets
"/fonts/font-awesome/fontawesome.css",
"/fonts/font-awesome/solid.css",
"/fonts/font-awesome/regular.css",
"/fonts/font-awesome/brands.css",
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
image: "og/default.jpg",
announcementBar: {
id: "announcement-bar-september-2025",
content: `<a href="https://academy.weaviate.io/">The new <b>Weaviate Academy</b> learning platform is here!</a>`,
backgroundColor: "#1C1468",
textColor: "#F5F5F5",
isCloseable: true,
},
navbar: {
title: "",
logo: {
alt: "Weaviate",
src: "/img/site/weaviate-logo-horizontal-light-1.svg",
srcDark: "/img/site/weaviate-logo-horizontal-dark-1.svg",
href: "https://weaviate.io",
},
items: [
{
html: `<svg class="githubStars" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>`,
to: "https://github.com/weaviate/weaviate",
position: "right",
},
{
label: "Academy",
className: "academy-button",
to: "https://academy.weaviate.io",
position: "right",
},
{
label: "Weaviate Cloud",
className: "cloud-button",
to: "/go/console?utm_content=navbar",
position: "right",
},
{
type: "search",
position: "right",
className: "hiddenSearch",
},
],
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
additionalLanguages: ["java", "csharp"],
},
docs: {
sidebar: {
hideable: true,
},
},
}),
};
export default config;