1
1
import starlight from '@astrojs/starlight' ;
2
2
import tailwind from "@astrojs/tailwind" ;
3
3
import { defineConfig } from 'astro/config' ;
4
-
5
4
import react from "@astrojs/react" ;
5
+ import icon from "astro-icon" ;
6
6
7
7
// https://astro.build/config
8
8
export default defineConfig ( {
9
9
integrations : [ starlight ( {
10
10
title : 'fullstackhero' ,
11
+ components : {
12
+ Pagination : './src/components/footer/pagination.astro'
13
+ } ,
11
14
editLink : {
12
15
baseUrl : 'https://github.com/fullstackhero/docs/edit/astro/'
13
16
} ,
14
17
logo : {
15
- src : './src/assets/full-stack-hero-logo.png' ,
18
+ src : './src/assets/full-stack-hero-logo.png'
16
19
} ,
17
20
social : {
18
21
github : 'https://github.com/fullstackhero/dotnet-starter-kit' ,
19
22
linkedin : 'https://www.linkedin.com/in/iammukeshm/' ,
20
23
youtube : 'https://www.youtube.com/@codewithmukesh' ,
21
- twitter : 'https://x.com/iammukeshm' ,
22
-
24
+ twitter : 'https://x.com/iammukeshm'
23
25
} ,
24
26
customCss : [ './src/styles/tailwind.css' , './src/styles/custom.scss' ] ,
25
27
sidebar : [ {
@@ -32,8 +34,18 @@ export default defineConfig({
32
34
autogenerate : {
33
35
directory : '/dotnet-starter-kit/webapi/'
34
36
}
37
+ } , {
38
+ label : 'Blazor' ,
39
+ autogenerate : {
40
+ directory : '/dotnet-starter-kit/blazor/'
41
+ }
42
+ } , {
43
+ label : 'Aspire' ,
44
+ autogenerate : {
45
+ directory : '/dotnet-starter-kit/aspire/'
46
+ }
35
47
} ]
36
48
} ) , tailwind ( {
37
49
applyBaseStyles : false
38
- } ) , react ( ) ]
50
+ } ) , react ( ) , icon ( ) ]
39
51
} ) ;
0 commit comments