-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
44 lines (43 loc) · 1.22 KB
/
Copy pathastro.config.mjs
File metadata and controls
44 lines (43 loc) · 1.22 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
40
41
42
43
44
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
export default defineConfig({
site: "https://fmtools.pages.dev",
integrations: [
starlight({
title: "FMTools Docs",
description: "Product docs for the Python toolkit, Swift runtime, and FMChat.",
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com/adpena/fmtools",
},
],
sidebar: [
{
label: "Start Here",
items: [
{ label: "Overview", link: "/" },
],
},
{
label: "Products",
items: [
{ label: "fmtools", link: "/fmtools/" },
{ label: "FMRuntime", link: "/fmruntime/" },
{ label: "FMChat", link: "/fmchat/" },
],
},
{
label: "Guides",
items: [
{ label: "Backends", link: "/guides/backends/" },
{ label: "Quality Workflows", link: "/guides/quality-workflows/" },
{ label: "Research-event triage", link: "/guides/research-event-triage/" },
{ label: "Transcripts", link: "/guides/transcripts/" },
],
},
],
}),
],
});