summaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-07-10 13:12:07 +0200
committerYuval Adam <_@yuv.al>2025-07-10 13:12:07 +0200
commitcb4900df47011a85fd04f9dfc7f90e2f01d88b35 (patch)
tree85c0c3b9f601bf913de1743a86776083c5e8c445 /astro.config.mjs
parent78cedf43bc61be8ace1d85e6f400ff6e719aaa73 (diff)
Add on demand rendering
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs6
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