2026-02-07 13:36:51 -05:00
|
|
|
// @ts-check
|
|
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
2026-02-24 12:37:23 -05:00
|
|
|
import cloudflare from '@astrojs/cloudflare';
|
|
|
|
|
|
2026-02-07 13:36:51 -05:00
|
|
|
// https://astro.build/config
|
2026-02-23 17:04:45 -05:00
|
|
|
export default defineConfig({
|
2026-02-24 12:37:23 -05:00
|
|
|
adapter: cloudflare()
|
|
|
|
|
});
|