Skip to content

Commit 7645613

Browse files
committed
chore: add Vercel configuration file
- Introduced a new vercel.json file to define build and install commands for the Next.js application. - Specified environment variables for target platform and architecture to ensure compatibility during deployment.
1 parent 507eeca commit 7645613

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

vercel.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"buildCommand": "npm run build",
4+
"installCommand": "npm ci && npm install --no-save --platform=linuxmusl --arch=x64 lightningcss @tailwindcss/oxide",
5+
"framework": "nextjs",
6+
"env": {
7+
"npm_config_target_platform": "linuxmusl",
8+
"npm_config_target_arch": "x64"
9+
}
10+
}

0 commit comments

Comments
 (0)