diff options
| author | Yuval Adam <_@yuv.al> | 2025-07-10 13:12:07 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-07-10 13:12:07 +0200 |
| commit | cb4900df47011a85fd04f9dfc7f90e2f01d88b35 (patch) | |
| tree | 85c0c3b9f601bf913de1743a86776083c5e8c445 /astro.config.mjs | |
| parent | 78cedf43bc61be8ace1d85e6f400ff6e719aaa73 (diff) | |
Add on demand rendering
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index e762ba5..8293fb2 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,5 +1,9 @@ // @ts-check import { defineConfig } from 'astro/config'; +import cloudflare from '@astrojs/cloudflare'; + // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + adapter: cloudflare() +});
\ No newline at end of file |
