Skip to content

Commit

Permalink
Merge pull request #5 from ooni/probe-engine
Browse files Browse the repository at this point in the history
feat: add probe-engine to sidebar
  • Loading branch information
DecFox committed Jul 5, 2024
2 parents d25571a + 1ee20a4 commit 0c9879c
Show file tree
Hide file tree
Showing 3 changed files with 7,380 additions and 7,829 deletions.
36 changes: 22 additions & 14 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import vercel from "@astrojs/vercel/static";
import rehypeShikiji from "rehype-shikiji";

// https://astro.build/config
export default defineConfig({
Expand All @@ -16,33 +15,42 @@ export default defineConfig({
sidebar: [
{
label: "Data",
autogenerate: { directory: "data" },
autogenerate: {
directory: "data",
},
},
{
label: "Meta",
autogenerate: { directory: "meta" },
autogenerate: {
directory: "meta",
},
},
{
label: "Devops",
autogenerate: { directory: "devops" },
autogenerate: {
directory: "devops",
},
},
{
label: "Backend",
autogenerate: { directory: "backend" },
autogenerate: {
directory: "backend",
},
},
{
label: "Probe Engine",
autogenerate: {
directory: "probe-engine",
},
},
{
label: "Legacy Backend",
autogenerate: { directory: "legacybackend" },
autogenerate: {
directory: "legacybackend",
},
},
],
expressiveCode: false,
customCss: [
'./src/styles/custom.css',
],
customCss: ["./src/styles/custom.css"],
}),
],
markdown: {
rehypePlugins: [[rehypeShikiji, { theme: "github-dark" }]],
syntaxHighlight: false,
},
});
Loading

0 comments on commit 0c9879c

Please sign in to comment.