From 68d2bccb50215eeccf8e4a5af29149a6406e3179 Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Thu, 12 Feb 2026 13:18:22 -0700 Subject: [PATCH] fix(vercel): remove invalid JSON syntax in vercel.json - Remove duplicate 'version' key - Remove JavaScript comments (not valid in JSON) - Remove duplicate 'env' key Fixes invalid vercel.json error on aethex.app deployment --- vercel.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vercel.json b/vercel.json index 0297886..5e8a730 100644 --- a/vercel.json +++ b/vercel.json @@ -1,11 +1,5 @@ { "version": 2, - "version": 2, - "env": { - "NODE_ENV": "production" - } - // All backend logic should be placed in api/ as serverless functions. - // Static assets are served from client/public (set in vite.config.ts). "env": { "NODE_ENV": "production" }