1
+ import react from "@astrojs/react" ;
1
2
import starlight from '@astrojs/starlight' ;
2
3
import tailwind from "@astrojs/tailwind" ;
3
- import { defineConfig } from 'astro/config' ;
4
- import react from "@astrojs/react" ;
5
4
import icon from "astro-icon" ;
5
+ import { defineConfig } from 'astro/config' ;
6
6
7
7
// https://astro.build/config
8
8
export default defineConfig ( {
9
9
integrations : [ starlight ( {
10
10
title : 'fullstackhero' ,
11
+ favicon : '/favicon.ico' ,
11
12
components : {
12
13
Pagination : './src/components/footer/pagination.astro'
13
14
} ,
@@ -26,23 +27,31 @@ export default defineConfig({
26
27
customCss : [ './src/styles/tailwind.css' , './src/styles/custom.scss' ] ,
27
28
sidebar : [ {
28
29
label : 'General' ,
30
+ collapsed : true ,
29
31
autogenerate : {
30
- directory : '/dotnet-starter-kit/general/'
32
+ directory : '/dotnet-starter-kit/general/' ,
33
+ collapsed : true
31
34
}
32
35
} , {
33
36
label : 'Web API' ,
37
+ collapsed : true ,
34
38
autogenerate : {
35
- directory : '/dotnet-starter-kit/webapi/'
39
+ directory : '/dotnet-starter-kit/webapi/' ,
40
+ collapsed : true
36
41
}
37
42
} , {
38
43
label : 'Blazor' ,
44
+ collapsed : true ,
39
45
autogenerate : {
40
- directory : '/dotnet-starter-kit/blazor/'
46
+ directory : '/dotnet-starter-kit/blazor/' ,
47
+ collapsed : true
41
48
}
42
49
} , {
43
50
label : 'Aspire' ,
51
+ collapsed : true ,
44
52
autogenerate : {
45
- directory : '/dotnet-starter-kit/aspire/'
53
+ directory : '/dotnet-starter-kit/aspire/' ,
54
+ collapsed : true
46
55
}
47
56
} ]
48
57
} ) , tailwind ( {
0 commit comments