-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
38 lines (37 loc) · 1.01 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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import sitemap from "@astrojs/sitemap";
import starlightThemeRapide from "starlight-theme-rapide";
// https://astro.build/config
export default defineConfig({
site: "https://knowledgewiki.jackkershaw.net",
description:
"This is my personal wiki, with all the links and notes that I find useful.",
integrations: [
starlight({
plugins: [starlightThemeRapide()],
logo: {
src: "/public/favicon.svg",
},
title: "My Knowledge Wiki",
customCss: ["./src/styles/custom.css"],
social: {
github: "https://github.com/jones58/personal-knowledge-wiki",
},
editLink: {
baseUrl:
"https://github.com/jones58/personal-knowledge-wiki/edit/main/",
},
sidebar: [
{
label: "Topics",
autogenerate: {
directory: "reference",
},
collapsed: true,
},
],
}),
sitemap(),
],
});