blob: 7c98bbb988034c24fb3d18546fc5b7d664cbbe77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import cloudflare from '@astrojs/cloudflare';
import { defineConfig } from 'astro/config';
export default defineConfig({
adapter: cloudflare({
imageService: 'compile',
}),
output: 'static',
});
|