-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
39 lines (38 loc) · 1.12 KB
/
astro.config.mjs
File metadata and controls
39 lines (38 loc) · 1.12 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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "Simmons Tech",
logo: {
src: "./src/assets/simmons-logo.png",
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/simmons-tech' },
{ icon: 'email', label: 'Email', href: 'https://astro.build/chat' },
],
editLink: {
baseUrl:
"https://github.com/simmons-tech/docs/edit/main/docs/",
},
sidebar: [
{ label: "Intro to Simmons Tech", link: "/intro/" },
{ label: "Simmons Tech Transition", link: "/transition/" },
{
label: "How to do stuff",
autogenerate: { directory: "guides" },
},
{
label: "How does Simmons Tech work?",
autogenerate: { directory: "reference" },
},
],
customCss: ["./src/styles/custom.css"],
favicon: "/favicon.png",
}),
],
site: "https://simmons-tech.github.io",
base: "/docs",
trailingSlash: "always",
});