From f267cafb80d038ee25009a3039837fbac3e6c4d9 Mon Sep 17 00:00:00 2001 From: James Pine Date: Sat, 18 Apr 2026 23:16:20 -0700 Subject: [PATCH] chore(landing): run dev server on Node instead of Bun runtime Bun runtime + Next 16 Turbopack dev server intermittently trips a JavaScriptCore allocator panic ('pas panic: deallocation did fail ... Alloc bit not set') after a few requests. Dropping --bun keeps Bun as the package manager but runs next dev on Node, which is stable. Build + start keep --bun since one-shot invocations don't exhibit the allocator drift. Co-Authored-By: Claude Opus 4.7 (1M context) --- landing/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landing/package.json b/landing/package.json index 218daf2c..6f0a752e 100644 --- a/landing/package.json +++ b/landing/package.json @@ -3,7 +3,7 @@ "version": "0.4.1", "description": "Landing page for voicebox.sh", "scripts": { - "dev": "bun --bun next dev --turbo", + "dev": "next dev --turbo", "build": "bun --bun next build", "start": "bun --bun next start", "lint": "next lint"