© 2026 Hedgehog Software, LLC
waitUntil()
ctx
+server.ts
export const GET = async (request) => { const { ctx, env } = request.platform || {}; if (!ctx) { console.error("[DEBUG] Missing Cloudflare context"); } else if (!env) { console.error("[DEBUG] Missing Cloudflare environment"); } }
$ wrangler tail ... (error) [DEBUG] Missing Cloudflare context