-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.ts
More file actions
160 lines (144 loc) · 4.11 KB
/
astro.config.ts
File metadata and controls
160 lines (144 loc) · 4.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import mdx from '@astrojs/mdx';
import partytown from '@astrojs/partytown';
import icon from 'astro-icon';
import compress from 'astro-compress';
import starlight from '@astrojs/starlight';
import type { AstroIntegration } from 'astro';
import astrowind from './vendor/integration';
import { readingTimeRemarkPlugin, responsiveTablesRehypePlugin, lazyImagesRehypePlugin } from './src/utils/frontmatter';
import { astroExpressiveCode } from '@astrojs/starlight/expressive-code';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const hasExternalScripts = false;
const whenExternalScripts = (items: (() => AstroIntegration) | (() => AstroIntegration)[] = []) =>
hasExternalScripts ? (Array.isArray(items) ? items.map((item) => item()) : [items()]) : [];
export default defineConfig({
output: 'static',
server: {
host: '0.0.0.0',
port: 4321,
},
integrations: [
tailwind({
applyBaseStyles: false,
}),
sitemap(),
astroExpressiveCode(),
mdx(),
icon({
include: {
tabler: ['*'],
'flat-color-icons': [
'electrical-sensor',
'multiple-devices',
'gallery',
'approval',
'advertising',
'shop',
'template',
'document',
'currency-exchange',
'voice-presentation',
'business-contact',
'database',
'businessman',
],
},
}),
starlight({
title: 'Thacker Broadcasting Docs',
favicon: './src/assets/favicons/favicon.svg',
editLink: {
baseUrl: 'https://github.com/thackerbroadcasting/site/edit/main/',
},
customCss: [
'./src/assets/styles/starlight.css',
],
lastUpdated: true,
disable404Route: true,
sidebar: [
{
label: 'Legal',
collapsed: true,
autogenerate: {
directory: '/legal'
}
},
{
label: 'Platform Guides',
collapsed: true,
autogenerate: { directory: 'platform-guides' },
},
{
label: 'Advanced',
collapsed: true,
autogenerate: { directory: 'advanced' },
},
{
label: 'FAQs',
link: '/faqs',
},
{
label: 'MSP',
collapsed: true,
items: [
{ label: 'Policies',
autogenerate: { directory: '/msp/policies' },
},
],
}
],
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/thackerbroadcasting' },
{ icon: 'x.com', label: 'X', href: 'https://x.com/thackbroadcast' },
{ icon: 'instagram', label: 'Instagram', href: 'https://instagram.com/thackerbroadcasting' },
{ icon: 'facebook', label: 'Facebook', href: 'https://www.facebook.com/thackerbroadcasting' },
{ icon: 'youtube', label: 'YouTube', href: 'https://www.youtube.com/@ThackerBroadcastingStudios' },
{ icon: 'linkedin', label: 'LinkedIn', href: 'https://www.linkedin.com/company/thacker-broadcasting' },
],
logo: {
dark: './src/assets/images/logo/logo-dark.svg',
light: './src/assets/images/logo/logo-light.svg',
replacesTitle: true,
},
}),
...whenExternalScripts(() =>
partytown({
config: { forward: ['dataLayer.push'] },
})
),
compress({
CSS: true,
HTML: {
'html-minifier-terser': {
removeAttributeQuotes: false,
},
},
Image: false,
JavaScript: true,
SVG: false,
Logger: 1,
}),
astrowind({
config: './src/config.yaml',
}),
],
image: {
domains: ['cdn.pixabay.com'],
},
markdown: {
remarkPlugins: [readingTimeRemarkPlugin],
rehypePlugins: [responsiveTablesRehypePlugin, lazyImagesRehypePlugin],
},
vite: {
resolve: {
alias: {
'~': path.resolve(__dirname, './src'),
},
},
},
});