-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
72 lines (69 loc) · 1.82 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
72
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import { qrcode } from "vite-plugin-qrcode";
import { getCache } from "@beoe/cache";
import { rehypeMermaid } from "@beoe/rehype-mermaid";
import { rehypeGraphviz } from "@beoe/rehype-graphviz";
import { rehypeGnuplot } from "@beoe/rehype-gnuplot";
import { rehypeVizdom } from "@beoe/rehype-vizdom";
import { rehypeD2 } from "@beoe/rehype-d2";
const cache = await getCache();
// requerd for correct displaying mobile warning
const className = "not-content";
const conf = {
cache,
strategy: "file",
darkScheme: "class",
// do not use .beoe for Netlify deployments
fsPath: "public/beoe",
webPath: "/beoe",
};
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "BEOE",
social: {
github: "https://github.com/stereobooster/beoe",
},
sidebar: [
{
label: "Start here",
autogenerate: { directory: "start-here" },
},
{
label: "Diagrams",
autogenerate: { directory: "diagrams" },
},
{
label: "Other",
autogenerate: { directory: "other" },
},
{
label: "Notes",
autogenerate: { directory: "notes" },
},
// {
// label: "Examples",
// autogenerate: { directory: "examples" },
// },
],
customCss: ["./src/styles/custom.css"],
components: {
PageFrame: "./src/components/PageFrame.astro",
},
}),
],
markdown: {
rehypePlugins: [
[rehypeGraphviz, { cache, class: className }],
[rehypeVizdom, { cache, class: className }],
[rehypeMermaid, conf],
[rehypeGnuplot, conf],
[rehypeD2, conf],
],
},
vite: {
plugins: [qrcode()],
},
});