-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathastro.config.mjs
56 lines (55 loc) · 1.64 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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "Snowfall",
favicon: "./src/assets/snowfall.jpg",
customCss: [
"@fontsource/nunito/400.css",
"@fontsource/nunito/700.css",
"./src/styles/theme.css",
],
social: {
github: "https://github.com/snowfallorg",
},
sidebar: [
{
label: "Lib",
items: [
{ label: "Quickstart", link: "/guides/lib/quickstart/" },
{
label: "Guides",
items: [
{ label: "Packages", link: "/guides/lib/packages/" },
{ label: "Overlays", link: "/guides/lib/overlays/" },
{ label: "Modules", link: "/guides/lib/modules/" },
{ label: "Systems", link: "/guides/lib/systems/" },
{ label: "Homes", link: "/guides/lib/homes/" },
{ label: "Library", link: "/guides/lib/library/" },
{ label: "Shells", link: "/guides/lib/shells/" },
{ label: "Checks", link: "/guides/lib/checks/" },
{ label: "Templates", link: "/guides/lib/templates/" },
{ label: "Generic", link: "/guides/lib/generic/" },
{ label: "Channels", link: "/guides/lib/channels/" },
{ label: "Aliases", link: "/guides/lib/alias/" },
],
},
{ label: "Reference", link: "/reference/lib/" },
{
label: "Migration",
items: [
{ label: "v2", link: "/guides/lib/migration/v2/" },
{ label: "v3", link: "/guides/lib/migration/v3/" },
],
},
],
},
],
components: {
Hero: "./src/components/hero.astro",
},
}),
],
});