-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
66 lines (65 loc) · 1.65 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
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import sitemap from '@astrojs/sitemap'
import tailwind from '@astrojs/tailwind'
import solidJs from '@astrojs/solid-js'
import { SITE_METADATA } from './src/consts.ts'
import metaTags from 'astro-meta-tags'
import robotsTxt from 'astro-robots-txt'
import compress from 'astro-compress'
// https://astro.build/config
export default defineConfig({
prefetch: true,
site: SITE_METADATA.siteUrl,
integrations: [
mdx(),
sitemap(),
tailwind(),
solidJs(),
metaTags(),
robotsTxt(),
compress({
HTML: {
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: true,
collapseWhitespace: true,
decodeEntities: true,
minifyCSS: true,
minifyJS: true,
// minifyURLs: '/', // @todo Make it work
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
sortAttributes: true,
sortClassName: true,
useShortDoctype: true,
},
Image: false,
JavaScript: {
terser: {
compress: {
drop_console: true,
},
},
},
SVG: {
svgo: {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
inlineStyles: false, // Preserve the class attributes.
},
},
},
],
},
},
}),
],
})