Skip to content

Commit e2017b8

Browse files
committed
add support component
1 parent 9e39389 commit e2017b8

File tree

9 files changed

+867
-5
lines changed

9 files changed

+867
-5
lines changed

astro.config.mjs

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
import starlight from '@astrojs/starlight';
22
import tailwind from "@astrojs/tailwind";
33
import { defineConfig } from 'astro/config';
4-
54
import react from "@astrojs/react";
5+
import icon from "astro-icon";
66

77
// https://astro.build/config
88
export default defineConfig({
99
integrations: [starlight({
1010
title: 'fullstackhero',
11+
components: {
12+
Pagination: './src/components/footer/pagination.astro'
13+
},
1114
editLink: {
1215
baseUrl: 'https://github.com/fullstackhero/docs/edit/astro/'
1316
},
1417
logo: {
15-
src: './src/assets/full-stack-hero-logo.png',
18+
src: './src/assets/full-stack-hero-logo.png'
1619
},
1720
social: {
1821
github: 'https://github.com/fullstackhero/dotnet-starter-kit',
1922
linkedin: 'https://www.linkedin.com/in/iammukeshm/',
2023
youtube: 'https://www.youtube.com/@codewithmukesh',
21-
twitter: 'https://x.com/iammukeshm',
22-
24+
twitter: 'https://x.com/iammukeshm'
2325
},
2426
customCss: ['./src/styles/tailwind.css', './src/styles/custom.scss'],
2527
sidebar: [{
@@ -32,8 +34,18 @@ export default defineConfig({
3234
autogenerate: {
3335
directory: '/dotnet-starter-kit/webapi/'
3436
}
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+
}
3547
}]
3648
}), tailwind({
3749
applyBaseStyles: false
38-
}), react()]
50+
}), react(), icon()]
3951
});

0 commit comments

Comments
 (0)