| 1 | import { defineConfig } from 'astro/config'; |
| 2 | import cloudflare from '@astrojs/cloudflare'; |
| 3 | import preact from '@astrojs/preact'; |
| 4 | |
| 5 | export default defineConfig({ |
| 6 | output: 'server', |
| 7 | adapter: cloudflare(), |
| 8 | integrations: [preact()], |
| 9 | }); |
| 10 | |