From 698d278de18a3c9f87b7fbf5403f8457029fc91c Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Thu, 28 Mar 2024 13:14:41 -0500 Subject: [PATCH] Fix breaking changes for v9 --> v10 --- astro.config.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index e3d46ca..1f8fbf0 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -6,6 +6,5 @@ import cloudflare from "@astrojs/cloudflare"; // https://astro.build/config export default defineConfig({ integrations: [tailwind()], - output: "server", - adapter: cloudflare({ mode: 'directory' }) + adapter: cloudflare(), }); \ No newline at end of file