Check Vercel Deployment Status
Quick Links
- Website Dashboard: https://vercel.com/kcolbchains-projects/website
- Website Settings: https://vercel.com/kcolbchains-projects/website/settings/general
- Deployments: https://vercel.com/kcolbchains-projects/website/deployments
Check Deployment Status
Via CLI:
bash
cd packages/website
vercel lsVia Dashboard:
- Go to https://vercel.com/kcolbchains-projects/website
- Check the "Deployments" tab
- Look for the latest deployment (should show the latest commit)
Verify Root Directory Setting
CRITICAL: Make sure Root Directory is set correctly:
- Go to: https://vercel.com/kcolbchains-projects/website/settings/general
- Scroll to "Root Directory"
- It should be set to:
.(repo root) or empty - If it shows
packages/website, change it to.or empty
Expected Build Process
When Root Directory is set to repo root (.):
- ✅ Vercel clones the repo
- ✅ Runs
npm installfrom root (installs all workspace deps) - ✅ Runs
npm run build --workspace=packages/website - ✅ Builds static site in
packages/website/out - ✅ Deploys from that directory
If Deployment Fails
Check the build logs:
- Go to Deployments tab
- Click on the failed deployment
- Check the "Build Logs" section
- Look for errors
Common issues:
- Root Directory not set correctly → Set to
.or empty - Build command not found → Should be
npm run build --workspace=packages/website - Output directory wrong → Should be
packages/website/out
Test Locally
To verify the build works:
bash
cd /path/to/CR8
npm install
npm run website:build
ls packages/website/out # Should see built files