From e7344fa7fe53301c219fc5efec8dfcdcc5c6ce59 Mon Sep 17 00:00:00 2001 From: pkupuk Date: Wed, 11 Mar 2026 21:35:51 +0800 Subject: [PATCH] fix(frontend): disable Cloudflare KV session persistence Session KV binding was causing deployment error. Since the project doesn't use sessions, disable persistence to avoid the binding requirement. --- apps/frontend/astro.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/frontend/astro.config.mjs b/apps/frontend/astro.config.mjs index 70edc2c..036354c 100644 --- a/apps/frontend/astro.config.mjs +++ b/apps/frontend/astro.config.mjs @@ -13,6 +13,9 @@ export default defineConfig({ enabled: true, configPath: './wrangler.jsonc', }, + session: { + persistence: 'none', + }, }), vite: { plugins: [tailwindcss()],