-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
130 lines (125 loc) · 3.39 KB
/
astro.config.mjs
File metadata and controls
130 lines (125 loc) · 3.39 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import { ion } from "starlight-ion-theme";
const orgSchema = {
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://osvauld.com/#organization",
"url": "https://docs.osvauld.com",
"name": "Osvauld",
"legalName": "OSVAULD SECURITY SOLUTIONS PRIVATE LIMITED",
"description": "Osvauld brings peer-to-peer, end-to-end encrypted applications built for personal autonomy",
"slogan": "Connect without compromise",
"logo": "https://www.osvauld.com/assets/logo.png",
"sameAs": [
"https://github.com/osvauld",
"https://www.osvauld.com",
"https://in.linkedin.com/company/osvauld",
"https://buymeacoffee.com/osvauld",
"https://osvauld.com/#corporation"
]
}
// https://astro.build/config
export default defineConfig({
integrations: [starlight({
title: "Documentation",
favicon: '/favicon.ico',
social: [
{ icon: 'telegram', label: 'Telegram', href: 'https://t.me/+tjZLZK8JV8g0NTVl' },
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/osvauld/osvauld',
},
{
icon: 'email',
label: 'Email',
href: 'mailto:abe@osvauld.com?subject=Hello Osvauld',
}
],
customCss: ["./src/styles/custom.css"],
sidebar: [
{
label: "Extended Web",
items: [
{ label: "Manifesto", link: "/extended-web/introduction" },
{ label: "Paradigm", link: "/extended-web/paradigm" },
],
},
{
label: "Protocol",
items: [
{ label: "Identity, Discovery & Handshake", link: "/core/identity-and-connections" },
{ label: "Authorization & Synchronization", link: "/core/authorization-and-sync" },
],
},
{
label: "Sthalam",
items: [
{ label: "Introduction", link: "/sthalam/introduction" },
{ label: "Examples", link: "/sthalam/examples" },
{
label: "Personal Node",
collapsed: true,
items: [
{ label: "Setting Up", link: "/sovereign-node/setting-up" },
],
},
{
label: "Future",
collapsed: true,
items: [
{ label: "Blockchain Integration", link: "/future/blockchain" },
{ label: "Planned Features", link: "/sthalam/future" },
],
},
],
},
],
head: [
{
tag: 'meta',
attrs: {
property: 'og:image',
content: '/osvauldthumb.webp',
},
},
{
tag: 'meta',
attrs: {
property: 'og:image:alt',
content: 'Osvauld Documentation Preview',
},
},
{
tag: 'meta',
attrs: {
name: 'twitter:card',
content: 'summary_large_image',
},
},
{
tag: 'meta',
attrs: {
name: 'twitter:image',
content: '/osvauldthumb.webp',
},
},
{
tag: 'script',
attrs: { type: 'application/ld+json' },
content: JSON.stringify(orgSchema),
},
{
tag: 'script',
attrs: {
'data-goatcounter': 'https://osvauld.goatcounter.com/count',
async: true,
src: 'https://gc.zgo.at/count.js',
},
},
],
plugins: [ion()],
},),
],
});