From 67fa3751aa425ba45c44bd05f1a55cb8cf0d7a77 Mon Sep 17 00:00:00 2001 From: "Ali(Ako) Hosseini" Date: Tue, 30 Jul 2024 14:51:01 +0800 Subject: [PATCH] build: override installcommand of vercel (#16256) --- vercel.dr.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vercel.dr.json b/vercel.dr.json index 8b972ec0c144..83085295311e 100644 --- a/vercel.dr.json +++ b/vercel.dr.json @@ -1,5 +1,6 @@ { "outputDirectory": "packages/core/dist", "buildCommand": "echo ✅ Skipping build to use existing built files", - "routes": [{ "handle": "filesystem" }, { "src": "/(.*)", "dest": "/index.html" }] + "routes": [{ "handle": "filesystem" }, { "src": "/(.*)", "dest": "/index.html" }], + "installCommand": "echo ✅ Skipping install, no dependencies to install" }