-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.js
58 lines (55 loc) · 1.79 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
53
54
55
56
57
58
import fs from 'node:fs/promises'
import { fileURLToPath } from 'node:url'
import { defineConfig } from 'astro/config'
import sitemap from '@astrojs/sitemap'
import { minify } from 'html-minifier-terser'
// https://astro.build/config
export default defineConfig({
site: 'https://gamedevjsweekly.com',
trailingSlash: 'never',
compressHTML: false,
build: {
format: 'file'
},
vite: {
build: {
cssMinify: 'lightningcss'
}
},
integrations: [sitemap(), {
name: 'gdjs:post:minify',
hooks: {
'astro:build:done': ({ dir, pages }) => Promise.all(pages.map(v => {
const
s = v.pathname || 'index',
p = fileURLToPath(new URL(s + '.html', dir))
return fs.readFile(p)
.then(v => minify(v.toString(), {
caseSensitive: true,
keepClosingSlash: true,
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: false,
collapseWhitespace: true,
minifyURLs: true,
quoteCharacter: "'",
removeOptionalTags: true,
removeAttributeQuotes: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
removeEmptyElements: false,
removeComments: true,
minifyJS: false,
minifyCSS: {
level: {
1: { all: true },
2: { all: true }
}
},
}))
.then(v => fs.writeFile(p, v))
}))
}
}]
})