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
This commit is contained in:
MrPiglr 2026-02-12 13:18:22 -07:00
parent 4b5cac8154
commit 68d2bccb50

View file

@ -1,11 +1,5 @@
{ {
"version": 2, "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": { "env": {
"NODE_ENV": "production" "NODE_ENV": "production"
} }