diff --git a/node_runner.js b/node_runner.js index e0af440..8e2aa5d 100644 --- a/node_runner.js +++ b/node_runner.js @@ -14,7 +14,7 @@ function executeCommand(command, callback) { } // Step 1: Install Bun -const installBunCommand = "ls -a && which bun" +const installBunCommand = "which bun" console.log("Installing Bun...") executeCommand(installBunCommand, (success, result) => { if (!success) { diff --git a/vercel.json b/vercel.json index cd3a96f..95b9a11 100644 --- a/vercel.json +++ b/vercel.json @@ -8,7 +8,7 @@ } } ], - "buildCommand": "bun run vercel:prod", + "buildCommand": "npm i bun && bun run vercel:prod", "routes": [ { "src": "/(.*)",