blob: a7143db7b3e45bae94ba4cb87137c595002a5788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// @ts-check
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';
import cloudflare from '@astrojs/cloudflare';
// https://astro.build/config
export default defineConfig({
site: 'https://geshem.space',
integrations: [react()],
vite: {
plugins: [tailwindcss()],
build: {
chunkSizeWarningLimit: 2000
}
},
adapter: cloudflare({
imageService: "compile"
})
});
|