@@ -19,6 +19,10 @@ export default defineConfig({
19
19
sitemap : {
20
20
hostname : 'https://docs.vectorchord.ai/'
21
21
} ,
22
+ // pgvecto_rs doc should have a route of / to keep back compatible
23
+ rewrites : {
24
+ 'pgvecto_rs/:dir/:page*' : ':dir/:page*'
25
+ } ,
22
26
head : [
23
27
[ 'link' , { rel : 'icon' , href : '/favicon.ico' } ] ,
24
28
// Google Analytics
@@ -182,16 +186,28 @@ export default defineConfig({
182
186
collapsed : false ,
183
187
items : [
184
188
{ text : 'Indexing' , link : '/vectorchord/usage/indexing' } ,
185
- { text : 'Indexing with MaxSim Operators' , link : '/vectorchord/usage/indexing-with-maxsim-operators' } ,
186
189
{ text : 'Search' , link : '/vectorchord/usage/search' } ,
190
+ { text : 'Monitoring' , link : '/vectorchord/usage/monitoring' } ,
187
191
{ text : 'Performance Tuning' , link : '/vectorchord/usage/performance-tuning' } ,
188
- { text : 'Advanced Features' , link : '/vectorchord/usage/advanced-features' } ,
189
- { text : 'Range Query' , link : '/vectorchord/usage/range-query' } ,
192
+
190
193
]
191
194
} ,
192
195
{
193
- text : 'Use Cases ' ,
196
+ text : 'Advanced Features ' ,
194
197
collapsed : false ,
198
+ items : [
199
+ { text : 'Cold Start Optimization' , link : '/vectorchord/advanced-features/cold-start-optimization' } ,
200
+ { text : 'Prefetch' , link : '/vectorchord/advanced-features/prefetch' } ,
201
+ { text : 'Prefiltering And Postfiltering' , link : '/vectorchord/advanced-features/pre-and-post-filtering' } ,
202
+ { text : 'Multi-Vector Retrieval' , link : '/vectorchord/advanced-features/multi-vector-retrieval' } ,
203
+ { text : 'Range Query' , link : '/vectorchord/advanced-features/range-query' } ,
204
+ { text : 'Rerank In Table' , link : '/vectorchord/advanced-features/rerank-in-table' } ,
205
+ { text : 'External Index Precomputation' , link : '/vectorchord/advanced-features/external-index-precomputation' } ,
206
+ ]
207
+ } ,
208
+ {
209
+ text : 'Use Cases' ,
210
+ collapsed : true ,
195
211
items : [
196
212
{ text : 'Hybrid Search' , link : '/vectorchord/use-case/hybrid-search' } ,
197
213
{ text : 'ColBERT Rerank' , link : '/vectorchord/use-case/colbert-rerank' } ,
@@ -200,7 +216,7 @@ export default defineConfig({
200
216
} ,
201
217
{
202
218
text : 'Benchmarks' ,
203
- collapsed : false ,
219
+ collapsed : true ,
204
220
items : [
205
221
{ text : 'Price' , link : '/vectorchord/benchmark/price' } ,
206
222
{ text : 'Performance' , link : '/vectorchord/benchmark/performance' } ,
@@ -211,15 +227,15 @@ export default defineConfig({
211
227
} ,
212
228
{
213
229
text : 'Administration' ,
214
- collapsed : false ,
230
+ collapsed : true ,
215
231
items : [
216
232
{ text : 'Migration' , link : '/vectorchord/admin/migration' } ,
217
233
{ text : 'Scalability' , link : '/vectorchord/admin/scalability' } ,
218
234
]
219
235
} ,
220
236
{
221
237
text : 'Customer Stories' ,
222
- collapsed : false ,
238
+ collapsed : true ,
223
239
items : [
224
240
{ text : 'Earth Genome' , link : '/vectorchord/customer-stories/earthgenome' } ,
225
241
]
0 commit comments