-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
106 lines (105 loc) · 3.16 KB
/
astro.config.mjs
File metadata and controls
106 lines (105 loc) · 3.16 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://docs.lokus.app',
integrations: [
starlight({
title: 'Lokus',
logo: {
src: './src/assets/lokus-logo.svg',
replacesTitle: true,
},
tagline: 'Where your thinking lives',
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/nicepkg/lokus',
},
],
sidebar: [
{
label: 'Getting Started',
items: [
{ label: 'Installation', slug: 'getting-started/installation' },
{ label: 'Quick Start', slug: 'getting-started/quick-start' },
{ label: 'Importing Notes', slug: 'getting-started/importing-notes' },
],
},
{
label: 'Features',
items: [
{ label: 'Editor', slug: 'features/editor' },
{ label: 'Wiki Links', slug: 'features/wiki-links' },
{ label: 'Graph View', slug: 'features/graph-view' },
{ label: 'Canvas', slug: 'features/canvas' },
{ label: 'Bases', slug: 'features/bases' },
{ label: 'Daily Notes', slug: 'features/daily-notes' },
{ label: 'Tasks', slug: 'features/tasks' },
{ label: 'Tags', slug: 'features/tags' },
{ label: 'Templates', slug: 'features/templates' },
{ label: 'Search', slug: 'features/search' },
{ label: 'Split Editor', slug: 'features/split-editor' },
{ label: 'Themes', slug: 'features/themes' },
],
},
{
label: 'AI',
items: [
{ label: 'MCP Server', slug: 'ai/mcp-server' },
],
},
{
label: 'Plugins',
items: [
{ label: 'Using Plugins', slug: 'plugins/using-plugins' },
{ label: 'Creating Plugins', slug: 'plugins/creating-plugins' },
{ label: 'Plugin API Reference', slug: 'plugins/plugin-api-reference' },
],
},
{
label: 'Developers',
items: [
{ label: 'Architecture', slug: 'developers/architecture' },
{ label: 'Building from Source', slug: 'developers/building-from-source' },
{ label: 'API Reference', slug: 'developers/api-reference' },
{ label: 'Testing', slug: 'developers/testing' },
{ label: 'Contributing', slug: 'developers/contributing' },
{ label: 'Environment Variables', slug: 'developers/environment-variables' },
],
},
{
label: 'Reference',
items: [
{ label: 'Keyboard Shortcuts', slug: 'reference/keyboard-shortcuts' },
{ label: 'Markdown Syntax', slug: 'reference/markdown-syntax' },
{ label: 'Template Variables', slug: 'reference/template-variables' },
{ label: 'Frontmatter', slug: 'reference/frontmatter' },
{ label: 'Config Options', slug: 'reference/config-options' },
],
},
{
label: 'Platform',
items: [
{ label: 'macOS', slug: 'platform/macos' },
{ label: 'Windows', slug: 'platform/windows' },
{ label: 'Linux', slug: 'platform/linux' },
],
},
{
label: 'Legal',
items: [
{ label: 'License', slug: 'legal/license' },
{ label: 'Privacy', slug: 'legal/privacy' },
],
},
{
label: 'Changelog',
slug: 'changelog',
},
],
}),
],
});