|
1 | | -import { defineConfig } from 'vitepress' |
| 1 | +import { defineConfig } from "vitepress"; |
2 | 2 |
|
3 | 3 | // https://vitepress.dev/reference/site-config |
4 | 4 | export default defineConfig({ |
5 | | - title: "loom-io", |
6 | | - description: "weave your data access", |
7 | | - lastUpdated: true, |
8 | | - themeConfig: { |
9 | | - logo: "/loom-io.png", |
10 | | - // https://vitepress.dev/reference/default-theme-config |
11 | | - nav: [ |
12 | | - { text: 'Home', link: '/' }, |
13 | | - { text: 'Docs', link: '/core/intro' } |
14 | | - ], |
15 | | - sidebar: [ |
16 | | - { |
17 | | - text: 'Getting Started', |
18 | | - items: [ |
19 | | - { text: 'Introduction', link: '/core/intro' }, |
20 | | - { text: 'Setup', link: '/core/setup' }, |
21 | | - { text: 'Examples', link: '/core/examples' } |
22 | | - ] |
23 | | - }, |
24 | | - { |
25 | | - text: 'Source Adapter', |
26 | | - items: [ |
27 | | - { text: 'In-Memory', link: '/adapter/in-memory-adapter' }, |
28 | | - { text: 'Filesystem', link: '/adapter/node-filesystem-adapter' }, |
29 | | - { text: 'S3-Minio', link: '/adapter/minio-s3-adapter' } |
30 | | - ] |
31 | | - }, |
32 | | - { |
33 | | - text: 'Converter', |
34 | | - items: [ |
35 | | - { text: 'Front Matter', link: '/converter/front-matter-converter' }, |
36 | | - { text: 'JSON', link: '/converter/json-converter' }, |
37 | | - { text: 'YAML', link: '/converter/yaml-converter' } |
38 | | - ] |
39 | | - }, |
40 | | - { |
41 | | - text: 'Reference', |
42 | | - items: [ |
43 | | - { text: 'File', link: '/ref/file' }, |
44 | | - { text: 'Directory', link: '/ref/directory' }, |
45 | | - { text: 'List', link: '/ref/list'}, |
46 | | - { text: 'Editor', link: '/ref/editor' } |
47 | | - ] |
48 | | - } |
49 | | - ], |
| 5 | + title: "loom-io", |
| 6 | + description: "weave your data access", |
| 7 | + lastUpdated: true, |
| 8 | + themeConfig: { |
| 9 | + logo: "/loom-io.png", |
| 10 | + // https://vitepress.dev/reference/default-theme-config |
| 11 | + nav: [ |
| 12 | + { text: "Home", link: "/" }, |
| 13 | + { text: "Docs", link: "/core/intro" }, |
| 14 | + ], |
| 15 | + sidebar: [ |
| 16 | + { |
| 17 | + text: "Getting Started", |
| 18 | + items: [ |
| 19 | + { text: "Introduction", link: "/core/intro" }, |
| 20 | + { text: "Setup", link: "/core/setup" }, |
| 21 | + { text: "Examples", link: "/core/examples" }, |
| 22 | + ], |
| 23 | + }, |
| 24 | + { |
| 25 | + text: "Source Adapter", |
| 26 | + items: [ |
| 27 | + { text: "In-Memory", link: "/adapter/in-memory-adapter" }, |
| 28 | + { text: "Filesystem", link: "/adapter/node-filesystem-adapter" }, |
| 29 | + { text: "S3-Minio", link: "/adapter/minio-s3-adapter" }, |
| 30 | + ], |
| 31 | + }, |
| 32 | + { |
| 33 | + text: "Converter", |
| 34 | + items: [ |
| 35 | + { text: "Combined", link: "/converter/combined-converter" }, |
| 36 | + { text: "Front Matter", link: "/converter/front-matter-converter" }, |
| 37 | + { text: "JSON", link: "/converter/json-converter" }, |
| 38 | + { text: "YAML", link: "/converter/yaml-converter" }, |
| 39 | + ], |
| 40 | + }, |
| 41 | + { |
| 42 | + text: "Reference", |
| 43 | + items: [ |
| 44 | + { text: "File", link: "/ref/file" }, |
| 45 | + { text: "Directory", link: "/ref/directory" }, |
| 46 | + { text: "List", link: "/ref/list" }, |
| 47 | + { text: "Editor", link: "/ref/editor" }, |
| 48 | + ], |
| 49 | + }, |
| 50 | + ], |
50 | 51 |
|
51 | | - socialLinks: [ |
52 | | - { icon: 'github', link: 'https://github.com/cotton-coding/loom-io' } |
53 | | - ] |
54 | | - } |
55 | | -}) |
| 52 | + socialLinks: [ |
| 53 | + { icon: "github", link: "https://github.com/cotton-coding/loom-io" }, |
| 54 | + ], |
| 55 | + }, |
| 56 | +}); |
0 commit comments