-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathastro.config.ts
More file actions
157 lines (142 loc) · 4.44 KB
/
Copy pathastro.config.ts
File metadata and controls
157 lines (142 loc) · 4.44 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
import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'astro/config';
import { unified } from '@astrojs/markdown-remark';
import sitemap from '@astrojs/sitemap';
import tailwindcss from '@tailwindcss/vite';
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 } from './src/utils/frontmatter';
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({
site: 'https://lycheeorg.dev',
output: 'static',
redirects: {
'/docs/': '/docs/getting-started/installation/',
},
integrations: [
starlight({
title: 'Lychee',
logo: {
src: './src/assets/images/logo.png',
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/LycheeOrg/Lychee' },
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/JMPvuRQcTf' },
],
editLink: {
baseUrl: 'https://github.com/LycheeOrg/LycheeOrg.github.io/edit/master/',
},
customCss: ['./src/styles/starlight.css'],
disable404Route: true,
sidebar: [
{
label: 'Getting Started',
items: [{ autogenerate: { directory: 'docs/getting-started' } }],
},
{
label: 'Usage',
items: [{ autogenerate: { directory: 'docs/usage' } }],
},
{
label: 'Features',
items: [{ autogenerate: { directory: 'docs/features' } }],
},
{
label: 'Supporter Edition',
badge: { text: 'SE', variant: 'tip' },
items: [{ autogenerate: { directory: 'docs/se' } }],
},
{
label: 'Webshop',
badge: { text: 'Pro', variant: 'caution' },
items: [{ autogenerate: { directory: 'docs/webshop' } }],
},
{
label: 'Administration',
items: [{ autogenerate: { directory: 'docs/administration' } }],
},
{
label: 'FAQ',
items: [{ autogenerate: { directory: 'docs/faq' } }],
},
],
}),
mdx(),
sitemap(),
icon({
include: {
tabler: ['*'],
'flat-color-icons': [
'template',
'gallery',
'approval',
'document',
'advertising',
'currency-exchange',
'voice-presentation',
'business-contact',
'database',
],
},
}),
...whenExternalScripts(() =>
partytown({
config: { forward: ['dataLayer.push'] },
})
),
compress({
// csso doesn't understand Tailwind v4's `@media (width >= ...)` range
// syntax and silently drops those blocks, breaking all responsive
// styles in the production build. lightningcss handles it correctly.
CSS: { csso: false, lightningcss: {} },
HTML: {
'html-minifier-terser': {
removeAttributeQuotes: false,
},
},
Image: false,
JavaScript: true,
SVG: false,
Logger: 1,
}),
astrowind({
config: './src/config.yaml',
}),
],
image: {
// Astro's default Sharp service handles local images.
//
// Most remote CDN images (Unsplash, Cloudinary, Imgix…) are routed by
// src/components/common/Image.astro through `unpic`, which rewrites the
// URL with CDN-side query parameters and serves it straight from the
// provider — Astro never downloads it, so they don't need to be listed.
//
// `domains` only matters for remote URLs that fall through to Astro's
// native <Image /> (i.e. providers Unpic can't detect, like Pixabay).
// Listed entries are authorized to be processed by Sharp.
// domains: ['cdn.pixabay.com'],
},
markdown: {
processor: unified({
remarkPlugins: [readingTimeRemarkPlugin],
rehypePlugins: [responsiveTablesRehypePlugin],
}),
},
vite: {
plugins: [tailwindcss()],
resolve: {
alias: {
'~': path.resolve(__dirname, './src'),
},
},
},
});