-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
71 lines (69 loc) · 1.67 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
import mdx from "@astrojs/mdx"
import sitemap from "@astrojs/sitemap"
import starlight from "@astrojs/starlight"
import svelte from "@astrojs/svelte"
import tailwind from "@astrojs/tailwind"
import expressiveCode from "astro-expressive-code"
import { defineConfig } from "astro/config"
import node from "@astrojs/node"
// https://astro.build/config
export default defineConfig({
site: "https://example.com",
output: "server",
integrations: [
expressiveCode(),
mdx(),
sitemap(),
tailwind(),
svelte(),
starlight({
title: "Pallad",
logo: { src: "./public/logo.svg" },
titleDelimiter: "-",
sidebar: [
{
label: "Introduction to Pallad",
link: "/docs",
},
{
label: "User Guide",
items: [{ label: "Getting Started", link: "/docs/getting-started" }],
},
{
label: "Developers",
items: [
{
label: "Key Management",
link: "/docs/key-management",
},
{
label: "Providers",
link: "/docs/providers",
},
{
label: "Vault",
link: "/docs/vault",
},
],
},
{
label: "Web Provider",
items: [
{
label: "Connector Methods",
link: "/docs/connector-methods",
},
],
},
],
social: {
"x.com": "https://get.pallad.co/x",
discord: "https://get.pallad.co/discord",
},
customCss: ["./src/styles/docs.css"],
}),
],
adapter: node({
mode: "standalone",
}),
})