forked from noah978/AltStore-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
63 lines (62 loc) · 1.78 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://wiki.sidestore.io',
trailingSlash: 'always',
integrations: [
starlight({
title: 'SideStore Docs',
logo: {
alt: 'SideStore Logo',
src: '/src/assets/icons/sidestore-icon.png',
replacesTitle: false,
},
favicon: '/favicon.svg',
social: {
github: 'https://github.com/sidestore',
patreon: 'https://www.patreon.com/sidestore',
discord: 'https://discord.gg/sidestore-949183273383395328',
twitter: 'https://twitter.com/sidestore_io'
},
defaultLocale: 'root',
locales: {
root: {
label: 'English',
lang: 'en',
},
},
customCss: [
'./src/styles/custom.css',
],
sidebar: [
{
label: 'FAQ',
link: 'faq',
},
{
label: 'Guides',
items: [
{ label: 'Getting Started', link: '/guides/getting-started/' },
{ label: 'Create a Burner Apple ID', link: '/guides/burner-apple-id/' },
{ label: 'Troubleshooting', link: '/guides/troubleshooting/' },
{ label: 'Error Codes', link: '/guides/error-codes/' },
],
},
{
label: 'Advanced',
items: [
{label: 'Custom Anisette Server', link: '/advanced/anisette-server/'},
{label: 'App Sources', link: '/advanced/app-sources/'},
{label: 'URL Schemes', link: '/advanced/url-schemes/'},
],
},
{
label: 'Contributing',
items: [
{ label: 'Translating the wiki', link: '/contributing/translations/' },
]
},
],
}),
],
});