-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.js
52 lines (50 loc) · 1.11 KB
/
astro.config.js
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
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import sitemap from '@astrojs/sitemap'
import tailwindcss from '@tailwindcss/vite'
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(),
solidJs(),
metaTags(),
robotsTxt(),
compress({
CSS: true,
HTML: true,
Image: false,
JavaScript: {
terser: {
compress: {
drop_console: true,
},
},
},
SVG: {
svgo: {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
inlineStyles: false, // Preserve the class attributes.
},
},
},
],
},
},
}),
],
vite: {
plugins: [tailwindcss()],
},
})