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.
This commit is contained in:
2026-03-11 21:35:51 +08:00
parent b5a8e9a1e6
commit e7344fa7fe

View File

@@ -13,6 +13,9 @@ export default defineConfig({
enabled: true, enabled: true,
configPath: './wrangler.jsonc', configPath: './wrangler.jsonc',
}, },
session: {
persistence: 'none',
},
}), }),
vite: { vite: {
plugins: [tailwindcss()], plugins: [tailwindcss()],