-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
226 lines (219 loc) · 7.1 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
216
217
218
219
220
221
222
223
224
225
226
import { defineConfig } from 'astro/config';
import { s } from 'hastscript';
import react from '@astrojs/react';
import sitemap from '@astrojs/sitemap';
import { pluginLineNumbers } from '@expressive-code/plugin-line-numbers';
import compress from 'astro-compress';
import astroExpressiveCode from 'astro-expressive-code';
import icon from 'astro-icon';
import astroMetaTags from 'astro-meta-tags';
import rename from 'astro-rename';
import robotsTxt from 'astro-robots-txt';
import responsiveTables from '@adapttive/remark-responsive-tables';
import remarkAlertBlocks from '@lucjosin/remark-alert-blocks';
import remarkCodeHighlight from '@lucjosin/remark-code-highlight';
import remarkCodeSet from '@lucjosin/remark-code-set';
import remarkImageCaption from '@lucjosin/remark-image-caption';
import remarkPostReference from '@lucjosin/remark-post-reference';
import remarkReadmeStats from '@lucjosin/remark-readme-stats';
import remarkSlider from '@lucjosin/remark-slider';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import rehypeExternalLinks from 'rehype-external-links';
import rehypeSlug from 'rehype-slug';
import remarkCollapse from 'remark-collapse';
import numberedFootnoteLabels from 'remark-numbered-footnote-labels';
import remarkToc from 'remark-toc';
import { defaultLocale, explicitLocales, locales } from './src/i18n/config';
import HashRenamer from './src/lib/hash-renamer';
import getRedirects from './src/lib/redirects';
const cssPrefix = 'astro-';
const renamer = new HashRenamer(cssPrefix);
const exceptions = [
// Global
'details',
'show',
// Giscus
'giscus',
// Expressive code
'expressive-code',
'frame',
'header',
'is-terminal',
];
// https://astro.build/config
export default defineConfig({
// Your final, deployed URL.
//
// Astro uses this full URL to generate your sitemap
// and canonical URLs in your final build.
site: 'https://www.lucasjosino.com',
// Specifies the output target for builds.
//
// ‘static’ - Building a static site to be deploy to any static host.
output: 'static',
// Specify a mapping of redirects where the key is the route to match and the value is the path to redirect to.
redirects: getRedirects(),
// Configures i18n routing
i18n: {
defaultLocale: defaultLocale,
locales: locales,
},
// Set the route matching behavior
trailingSlash: 'always',
// Build Options
build: {
// Control the output file format of each page.
format: 'directory',
},
// Astro integrations.
//
// Ref: https://docs.astro.build/en/guides/integrations-guide/
// Ref: https://docs.astro.build/en/guides/integrations-guide/sitemap/
integrations: [
astroExpressiveCode({
themes: ['dark-plus', 'light-plus'],
useDarkModeMediaQuery: true,
themeCssSelector: (theme) =>
`[data-theme='${theme.name.replace('-plus', '')}']`,
plugins: [pluginLineNumbers()],
}),
astroMetaTags(),
icon(),
rename({
rename: {
strategy: (key) => renamer.rename(key),
except: exceptions,
},
}),
sitemap({
i18n: {
defaultLocale: defaultLocale,
locales: explicitLocales,
},
}),
robotsTxt({
sitemap: true,
}),
compress(),
react(),
],
// Markdown configuration
markdown: {
rehypePlugins: [
rehypeSlug,
[
rehypeExternalLinks,
{
rel: 'noopener noreferrer',
target: '_blank',
content: [
s(
'svg.external-links',
{
xmlns: 'http://www.w3.org/2000/svg',
width: 16,
height: 16,
marginLeft: '1rem',
fill: 'currentColor',
viewBox: '0 0 24 24',
},
s('path', {
d: 'M14 3v2h3.59l-9.83 9.83l1.41 1.41L19 6.41V10h2V3m-2 16H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7Z',
})
),
],
},
],
[
rehypeAutolinkHeadings,
{
behavior: 'append',
properties: {
class: 'autolink-header',
ariaHidden: true,
tabIndex: -1,
},
content: [
s(
'svg.autolink-svg',
{
xmlns: 'http://www.w3.org/2000/svg',
width: 18,
height: 18,
marginLeft: '1rem',
fill: 'currentColor',
viewBox: '0 0 24 24',
},
s('path', {
d: 'M9.199 13.599a5.99 5.99 0 0 0 3.949 2.345 5.987 5.987 0 0 0 5.105-1.702l2.995-2.994a5.992 5.992 0 0 0 1.695-4.285 5.976 5.976 0 0 0-1.831-4.211 5.99 5.99 0 0 0-6.431-1.242 6.003 6.003 0 0 0-1.905 1.24l-1.731 1.721a.999.999 0 1 0 1.41 1.418l1.709-1.699a3.985 3.985 0 0 1 2.761-1.123 3.975 3.975 0 0 1 2.799 1.122 3.997 3.997 0 0 1 .111 5.644l-3.005 3.006a3.982 3.982 0 0 1-3.395 1.126 3.987 3.987 0 0 1-2.632-1.563A1 1 0 0 0 9.201 13.6zm5.602-3.198a5.99 5.99 0 0 0-3.949-2.345 5.987 5.987 0 0 0-5.105 1.702l-2.995 2.994a5.992 5.992 0 0 0-1.695 4.285 5.976 5.976 0 0 0 1.831 4.211 5.99 5.99 0 0 0 6.431 1.242 6.003 6.003 0 0 0 1.905-1.24l1.723-1.723a.999.999 0 1 0-1.414-1.414L9.836 19.81a3.985 3.985 0 0 1-2.761 1.123 3.975 3.975 0 0 1-2.799-1.122 3.997 3.997 0 0 1-.111-5.644l3.005-3.006a3.982 3.982 0 0 1 3.395-1.126 3.987 3.987 0 0 1 2.632 1.563 1 1 0 0 0 1.602-1.198z',
})
),
],
},
],
],
remarkPlugins: [
[
remarkReadmeStats,
{
darkBgColor: '111111',
lightBgColor: 'ffffff',
borderRadius: '10',
},
],
remarkPostReference,
numberedFootnoteLabels,
remarkAlertBlocks,
remarkCodeHighlight,
remarkSlider,
remarkImageCaption,
responsiveTables,
remarkCodeSet,
[
remarkToc,
{
heading: 'Summary|Sumário',
},
],
[
remarkCollapse,
{
test: 'Summary|Sumário',
summary: (str) => {
return str === 'Summary' ? 'Show contents' : 'Mostrar conteúdos';
},
},
],
],
extendDefaultPlugins: true,
},
// Astro icon.
//
// Ref: https://github.com/natemoo-re/astro-icon#setup
vite: {
ssr: {
external: ['svgo', '@resvg/resvg-js'],
},
// Fix 'resvg' on dev mode
optimizeDeps: {
exclude: ['@resvg/resvg-js'],
esbuildOptions: { target: 'esnext' },
},
build: { rollupOptions: { external: ['@resvg/resvg-js'] } },
},
// Listen on all addresses, including LAN and public addresses.
//
// Ref: https://docs.astro.build/en/reference/configuration-reference/#serverhost
server: {
host: true,
},
// Astro offers experimental flags to give users early access to new features.
// These flags are not guaranteed to be stable.
experimental: {
// Enables a more reliable strategy to prevent scripts from being
// executed in pages where they are not used.
//
// https://docs.astro.build/en/reference/configuration-reference/#experimentaldirectrenderscript
directRenderScript: true,
},
});