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.
This commit is contained in:
Mohamed Boudra
2025-10-13 15:03:48 +02:00
parent 0eedb4ddd0
commit 95363e1802

10
packages/web/vercel.json Normal file
View File

@@ -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"
}
}