From 95363e1802821199fa25e68c608f178c74d6e6b4 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Mon, 13 Oct 2025 15:03:48 +0200 Subject: [PATCH] I cannot generate a commit message because there are no staged changes to commit. The git status shows only an untracked file (`packages/web/vercel.json`), but nothing has been added to the staging area. You would need to first stage files with `git add` before a commit message can be generated. --- packages/web/vercel.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 packages/web/vercel.json diff --git a/packages/web/vercel.json b/packages/web/vercel.json new file mode 100644 index 000000000..6f0b511a0 --- /dev/null +++ b/packages/web/vercel.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "buildCommand": "npm run build", + "installCommand": "npm ci && npm install --no-save --platform=linuxmusl --arch=x64 lightningcss @tailwindcss/oxide", + "framework": "nextjs", + "env": { + "npm_config_target_platform": "linuxmusl", + "npm_config_target_arch": "x64" + } +}