-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathastro.config.mjs
73 lines (71 loc) · 2.01 KB
/
astro.config.mjs
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
// @ts-check
import {defineConfig} from 'astro/config';
import starlight from '@astrojs/starlight';
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://info.bsky.one',
integrations: [
starlight({
customCss: ['./src/fonts/fixel.css', './src/styles/theme.css', './src/styles/common.css'],
title: 'База знань Bluesky',
defaultLocale: 'root',
locales: {
root: {
label: 'Українська',
lang: 'uk',
},
},
editLink: {
baseUrl: 'https://github.com/navix/info.bsky.one/edit/main/',
},
social: {
github: 'https://github.com/navix/info.bsky.one',
blueSky: 'https://bsky.app/profile/bsky.one',
email: 'mailto:[email protected]',
},
sidebar: [
{
slug: 'home',
},
{
label: 'Основи',
items: [
{slug: 'basics/bluesky'},
{slug: 'basics/atproto'},
{slug: 'basics/public'},
{slug: 'basics/handle'},
//{slug: 'basics/profile'},
{slug: 'basics/feed'},
{slug: 'basics/post'},
//{slug: 'basics/notification'},
{slug: 'basics/messages'},
{slug: 'basics/search'},
{slug: 'basics/mute'},
{slug: 'basics/block'},
//{slug: 'basics/moderation'},
{slug: 'basics/list'},
//{slug: 'basics/settings'},
{slug: 'extra/starter-pack'},
],
},
{
label: 'Проєкт BSKY.ONE',
slug: 'bsky-one/bsky-one',
},
{
label: 'Корисне',
items: [
// {slug: 'extra/utils'},
// {slug: 'extra/clients'},
{slug: 'extra/custom-handle'},
{slug: 'extra/custom-feed'},
{slug: 'extra/embed'},
{slug: 'extra/kawaii-mode'},
],
},
],
}),
sitemap(),
],
});