Deploy to Vercel
Here’s how we deployed Kitbook to Vercel written here for maintenance reference.
- Create a new Vercel project from this repo and choose the SvelteKit framework preset
- Set the root folder to
packages/kitbook - Add custom build command:
pnpm build - Add custom install command:
pnpm install, usepnpm install --unsafe-permif you need svelte-kit sync to run in a separate library.
Ignoring unrelated updates in monorepo
- As explained in this support article, you can add
git diff --quiet HEAD^ HEAD .to the Git/Ignored Build Step field to only deploy your Kitbook when its project has changes.