-
Notifications
You must be signed in to change notification settings - Fork 2
/
astro.config.mjs
35 lines (26 loc) · 885 Bytes
/
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
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
import vercel from '@astrojs/vercel';
import icon from 'astro-icon';
import playformCompress from '@playform/compress';
import sitemap from '@astrojs/sitemap';
import svelte from '@astrojs/svelte';
import partytown from '@astrojs/partytown';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), react(), icon(), playformCompress(), sitemap({
customPages: ['https://status.evolutionygo.com']
}), svelte(), partytown()],
vite: {
resolve: {
alias: {
'@fontsource-variable/plus-jakarta-sans': '@fontsource-variable/plus-jakarta-sans'
}
}
},
site: 'https://evolutionygo.com',
output: 'server',
adapter: vercel()
});