0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 16:36:44 +01:00

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
This commit is contained in:
gtmnayan 2023-06-29 19:34:38 +05:45 committed by GitHub
parent 678faf4f36
commit 867806f983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,5 +3,5 @@
"github": {
"silent": true
},
"buildCommand": "cd ../../packages/svelte && pnpm prepublishOnly && cd ../../sites/svelte.dev && pnpm build"
"buildCommand": "cd ../../packages/svelte && pnpm prepublishOnly && cd ../../sites/svelte.dev && pnpm rebuild sharp && pnpm build"
}