-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
53 lines (52 loc) · 1.42 KB
/
astro.config.mjs
File metadata and controls
53 lines (52 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'DynamikDev Docs',
logo: {
dark: './public/dynamik-dev-logo.svg',
light: './public/dynamik-dev-logo.svg',
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/dynamik-dev' }
],
sidebar: [
{
label: 'Start Here',
items: [
{ label: 'Welcome', slug: 'index' },
],
},
{
label: 'Cloak PHP',
items: [
{ label: 'Overview', slug: 'cloak-php' },
{ label: 'Quick Start', slug: 'cloak-php/quick-start' },
{ label: 'Detectors', slug: 'cloak-php/detectors' },
{ label: 'API Reference', slug: 'cloak-php/api-reference' },
{
label: 'Laravel Adapter',
items: [
{ label: 'Getting Started', slug: 'cloak-php/laravel' },
{ label: 'Configuration', slug: 'cloak-php/configuration' },
],
},
],
},
{
label: 'Listmonk PHP',
items: [
{ label: 'Overview', slug: 'listmonk-php' },
{ label: 'Quick Start', slug: 'listmonk-php/quick-start' },
{ label: 'Subscribers', slug: 'listmonk-php/subscribers' },
{ label: 'Campaigns', slug: 'listmonk-php/campaigns' },
{ label: 'API Reference', slug: 'listmonk-php/api-reference' },
],
},
],
}),
],
});