1
1
import { defineConfig } from 'astro/config' ;
2
2
import starlight from '@astrojs/starlight' ;
3
+ import starlightThemeFlexoki from 'starlight-theme-flexoki'
3
4
4
5
// https://astro.build/config
5
6
export default defineConfig ( {
6
7
integrations : [
7
8
starlight ( {
8
9
title : 'Open Compute Framework' ,
9
- social : {
10
- github : 'https://github.com/autoai-org/opencomputeframework' ,
11
- discord : 'https://discord.gg/PgGb4z4Jve' ,
12
- } ,
10
+ plugins : [ starlightThemeFlexoki ( ) ] ,
11
+ social : [ { icon : 'github' , label : 'GitHub' , href : 'https://github.com/researchcomputer/OpenComputeFramework' } ] ,
13
12
sidebar : [
14
13
{
15
14
label : 'Guides' ,
@@ -18,7 +17,16 @@ export default defineConfig({
18
17
{ label : 'ML Inference' , link : '/guides/ml_inference/' } ,
19
18
{ label : 'Deployment' , link : '/guides/spinup/' } ,
20
19
] ,
21
- }
20
+ } ,
21
+ {
22
+ label : 'Reference' ,
23
+ items : [
24
+ { label : 'Architecture' , link : '/reference/architecture/' } ,
25
+ { label : 'CLI' , link : '/reference/cli/' } ,
26
+ { label : 'API' , link : '/reference/api/' } ,
27
+ { label : 'Configuration' , link : '/reference/configuration/' } ,
28
+ ] ,
29
+ }
22
30
23
31
] ,
24
32
} ) ,
0 commit comments