-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
215 lines (214 loc) · 5.58 KB
/
astro.config.mjs
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import { defineConfig } from 'astro/config';
import starlight from "@astrojs/starlight";
import sitemap from '@astrojs/sitemap';
import compressor from "astro-compressor";
import purgecss from 'astro-purgecss';
import favicons from "astro-favicons";
import starlightDocSearch from '@astrojs/starlight-docsearch';
import { defineConfig, passthroughImageService } from 'astro/config';
// https://astro.build/config
export default defineConfig({
vite: {
build: {
sourcemap: false
}
},
image: {
service: passthroughImageService()
},
site: "https://schematics.pbuilder.dev",
integrations: [
starlight({
logo: {
light: "./src/assets/logo-light.svg",
dark: "./src/assets/logo-dark.svg",
replacesTitle: true,
},
expressiveCode: {
styleOverrides: {
borderRadius: "0.5rem",
},
},
title: "Schematics Documentation",
description: "Explore comprehensive Schematics Documentation for Angular and Javascript.",
components: {
// Relative path to the custom component.
Head: "./src/components/Head.astro",
TableOfContents: "./src/components/TableOfContents.astro",
// PageSidebar: './src/components/starlight/PageSidebar.astro',
},
social: {
github: "https://github.com/Hyperxq/Project-Builder-schematics-docs",
"x.com": "https://twitter.com/SForHumans",
},
customCss: ['./src/assets/landing.css'],
sidebar: [
{
label: "Start Here",
items: [
{
label: "Overview",
link: "/getting-started/overview",
},
{
label: "First steps",
link: "/getting-started/first-steps",
},
{
label: "How to use the CLI?",
link: "/getting-started/cli",
},
{
label: "What's next?",
link: "/getting-started/whats-next",
}
],
},
{
label: "How to",
items: [
{
label: "How to Extend an Existing Schematic",
link: "/how-to/how-to-extend-an-existing-schematic",
}
],
},
{
label: "Tutorials",
items: [
{
label: "My first schematic",
link: "/tutorials/my-first-schematic",
},
{
label: "How to test your schematic library?",
link: "/tutorials/test-your-schematic",
},
{
label: "When to use Rules or call other schematics?",
link: "/tutorials/using-rules-or-external-schematics",
},
],
},
{
label: "Core Concepts",
items: [
{
label: "Schematic Project Anatomy",
link: "/core-concepts/schematic-project-anatomy",
},
{
label: "Rule",
link: "/core-concepts/rule",
},
{
label: "Tree",
link: "/core-concepts/tree",
},
{
label: "Schematic Context",
link: "/core-concepts/schematic-context",
},
{
label: "Schema JSON",
link: "/core-concepts/schema-json",
},
],
},
{
label: "How to install dependencies?",
link: "/install-dependencies",
},
{
label: "Frameworks",
items: [
{
label: "Astro",
link: "/frameworks/astro",
},
],
},
{
label: "Files",
items: [
{
label: "How to start with files?",
link: "/files/how-to-start",
},
{
label: "Add Files",
link: "/files/add",
},
{
label: "Remove Files",
link: "/files/remove",
},
{
label: "Modify Files",
link: "/files/modify",
},
],
},
{
label: "Terminal",
items: [
{
label: "User Inputs",
link: "/terminal/user-inputs",
},
{
label: "Pre-Execution Inputs",
link: "/terminal/schema-json",
},
{
label: "In-Execution Inputs",
link: "/terminal/inquirer",
},
],
},
{
label: "Utils",
items: [
{
label: "Spinner",
link: "/utils/ora",
},
{
label: "Colors in terminal",
link: "/utils/color",
},
],
},
{
label: "Limitations",
link: "/limitations",
},
],
customCss: ["./src/styles/colors.css", "./src/styles/theme.css", "./src/styles/custom.css"],
plugins: [
starlightDocSearch({
appId: "LMC7D7B01D",
apiKey: "4f694dbbaf9a73b4c4a0421bb84bfd82",
indexName: "schematics",
}),
],
}),
sitemap(),
compressor({ gzip: true, brotli: true }),
purgecss(),
favicons({
masterPicture: "./public/leo.webp",
emitAssets: true,
faviconsDarkMode: true,
}),
],
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
});