From b981999dcca249080974c7b5081d1872bf2ea42d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 05:00:02 +0000 Subject: [PATCH] Fix build-api.js destination path to copy within code directory cgen-5e1c42f5490445808beb44d0f48e1844 --- build-api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-api.js b/build-api.js index 629aeaf0..47b32548 100644 --- a/build-api.js +++ b/build-api.js @@ -8,7 +8,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); console.log("Preparing API files for Vercel..."); const srcApi = path.resolve(__dirname, "api"); -const destApi = path.resolve(__dirname, "..", "api"); +const destApi = path.resolve(__dirname, "api"); const UTILITY_PATTERNS = [ /^_/,