-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
59 lines (52 loc) · 1.21 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
import fs from 'node:fs'
import partytown from '@astrojs/partytown'
import sitemap from '@astrojs/sitemap'
import tailwind from '@astrojs/tailwind'
import compress from '@otterlord/astro-compress'
import { defineConfig } from 'astro/config'
import purgecss from 'astro-purgecss'
import { loadEnv } from './dotenv.config'
loadEnv()
const baseURL = process.env.ASTRO_BASE_URL || ''
if (baseURL.length === 0) {
console.log('Missing environment variable \'ASTRO_BASE_URL\'.')
process.exit(1)
}
// https://astro.build/config
export default defineConfig({
site: baseURL,
integrations: [
tailwind(),
partytown({
config: {
forward: ['dataLayer.push'],
},
}),
sitemap(),
purgecss(),
compress(),
],
vite: {
plugins: [rawFonts(['.ttf', '.woff'])],
optimizeDeps: {
exclude: [
'@resvg/resvg-js',
],
},
},
})
// vite plugin to import fonts
function rawFonts(ext) {
return {
name: 'vite-plugin-raw-fonts',
transform(_, id) {
if (ext.some((e) => id.endsWith(e))) {
const buffer = fs.readFileSync(id)
return {
code: `export default ${JSON.stringify(buffer)}`,
map: null,
}
}
},
}
}