From 867806f983364708d8ad52c9126c4c0c3099413a Mon Sep 17 00:00:00 2001 From: gtmnayan <50981692+gtm-nayan@users.noreply.github.com> Date: Thu, 29 Jun 2023 19:34:38 +0545 Subject: [PATCH] chore: fix site deploys (#8878) force Vercel to rebuild sharp everytime - it's prone to breaking at some point and we'd have to clear the cache --- sites/svelte.dev/vercel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/svelte.dev/vercel.json b/sites/svelte.dev/vercel.json index f7c95d1eda..03d3178382 100644 --- a/sites/svelte.dev/vercel.json +++ b/sites/svelte.dev/vercel.json @@ -3,5 +3,5 @@ "github": { "silent": true }, - "buildCommand": "cd ../../packages/svelte && pnpm prepublishOnly && cd ../../sites/svelte.dev && pnpm build" -} \ No newline at end of file + "buildCommand": "cd ../../packages/svelte && pnpm prepublishOnly && cd ../../sites/svelte.dev && pnpm rebuild sharp && pnpm build" +}