-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathastro.config.mjs
More file actions
76 lines (75 loc) · 2.11 KB
/
astro.config.mjs
File metadata and controls
76 lines (75 loc) · 2.11 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
// --js-ts--
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import starlightImageZoom from "starlight-image-zoom";
import starlightKbd from "starlight-kbd";
// https://astro.build/config
export default defineConfig({
site: "https://stratos-linux.org",
base: "",
plugins: [starlightImageZoom()],
integrations: [
starlight({
plugins: [
starlightImageZoom(),
starlightKbd({
globalPicker: false,
types: [{ id: "linux", label: "Linux", default: true }],
}),
],
title: "StratOS Linux",
customCss: process.env.NO_GRADIENTS
? ["./src/styles/_global.css"]
: ["./src/styles/landing.css", "./src/styles/_global.css"],
// customCss: [ '@fontsource-variable/jetbrains-mono/400.css', '@fontsource-variable/jetbrains-mono/600.css' ],
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com/StratOS-Linux",
},
{
icon: "discord",
label: "Discord",
href: "https://discord.gg/DVaXRCnCet",
},
{
icon: "mastodon",
label: "Mastodon",
href: "https://fosstodon.org/@StratOS",
},
{
icon: "x.com",
label: "X (Formerly known as Twitter)",
href: "https://twitter.com/StratOS_Linux",
},
],
sidebar: [
// {
// label: 'Guides',
// items: [
// // Each item here is one entry in the navigation menu.
// { label: 'Example Guide', link: '/guides/example/' },
// ],
// },
// {
// // label: "Master tutorial",
// // autogenerate: { directory: "guides" },
// slug: "guides/index",
// },
{
label: "Getting Started",
autogenerate: { directory: "intro" },
},
{
label: "Tools",
autogenerate: { directory: "tools" },
},
{
label: "Configuration",
autogenerate: { directory: "configuration" },
},
],
}),
],
});