-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
40 lines (38 loc) · 1.25 KB
/
astro.config.mjs
File metadata and controls
40 lines (38 loc) · 1.25 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightBlog from 'starlight-blog';
import starlightThemeFlexoki from 'starlight-theme-flexoki';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Yarp.Cloud',
plugins: [
starlightThemeFlexoki(),
starlightBlog(),
],
// Logo now handled by custom SiteTitle component
social: [
{ icon: 'github', label: 'GitHub', href: 'https://www.github.com/jibbscript' },
{ icon: 'linkedin', label: 'LinkedIn', href: 'https://www.linkedin.com/in/gibran-iqbal/' },
{ icon: 'email', label: 'Email', href: 'mailto:giqbal@gibraniq.com' },
],
sidebar: [
{
label: 'Posts',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Rangency', slug: 'reflections/rangency' },
{ label: 'FedRAMP Data Mesh Reference Architecture', slug: 'fedramp/fedramp-datamesh' },
{ label: 'Security Infrastructure MVP Collection', slug: 'security/security-infrastructure-mvp-collection/infra-security-projects' },
],
},
],
components: {
SiteTitle: './src/components/SiteTitle.astro',
},
}),
],
site: 'https://www.yarp.cloud',
});