Skip to content

Commit 6520fd5

Browse files
authored
docs: migrate docs site to Astro Starlight (#557)
Signed-off-by: shanghaikid <jiangruiyi@gmail.com>
1 parent 3ade28b commit 6520fd5

82 files changed

Lines changed: 3975 additions & 3305 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -857,10 +857,10 @@ await client.search({
857857

858858
For detailed guides on advanced features, visit the documentation:
859859

860-
- **[Hybrid Search](docs/content/operations/hybrid-search.mdx)** — Multi-vector search with reranking
861-
- **[Full-Text Search](docs/content/advanced/full-text-search.mdx)** — BM25 keyword search with text analyzers
862-
- **[Iterators](docs/content/operations/iterators.mdx)** — Paginate through large result sets
863-
- **[Global Cluster](docs/content/advanced/global-cluster.mdx)** — Multi-region failover support
860+
- **[Hybrid Search](docs/src/content/docs/operations/hybrid-search.mdx)** — Multi-vector search with reranking
861+
- **[Full-Text Search](docs/src/content/docs/advanced/full-text-search.mdx)** — BM25 keyword search with text analyzers
862+
- **[Iterators](docs/src/content/docs/operations/iterators.mdx)** — Paginate through large result sets
863+
- **[Global Cluster](docs/src/content/docs/advanced/global-cluster.mdx)** — Multi-region failover support
864864

865865
---
866866

docs/.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
node_modules/
2-
.next/
2+
.astro/
33
out/
4-
_pagefind/
54
.DS_Store
65
*.log
76

docs/.prettierrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"singleQuote": true,
3+
"semi": true,
4+
"trailingComma": "es5",
5+
"plugins": ["prettier-plugin-astro"],
6+
"overrides": [
7+
{
8+
"files": "*.astro",
9+
"options": {
10+
"parser": "astro"
11+
}
12+
}
13+
]
14+
}

docs/app/[[...mdxPath]]/page.jsx

Lines changed: 0 additions & 157 deletions
This file was deleted.

docs/app/layout.jsx

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)