diff --git a/vercel.json b/vercel.json index 8580f21..725b83a 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,14 @@ { "version": 2, - "builds": [{ "src": "package.json", "use": "@vercel/next" }], + "builds": [ + { + "src": "package.json", + "use": "@vercel/next", + "config": { + "installCommand": "npm install --force", + "buildCommand": "npm run build" + } + } + ], "routes": [{ "src": "/(.*)", "dest": "/" }] }