Skip to content

Check Vercel Deployment Status

Check Deployment Status

Via CLI:

bash
cd packages/website
vercel ls

Via Dashboard:

  1. Go to https://vercel.com/kcolbchains-projects/website
  2. Check the "Deployments" tab
  3. Look for the latest deployment (should show the latest commit)

Verify Root Directory Setting

CRITICAL: Make sure Root Directory is set correctly:

  1. Go to: https://vercel.com/kcolbchains-projects/website/settings/general
  2. Scroll to "Root Directory"
  3. It should be set to: . (repo root) or empty
  4. If it shows packages/website, change it to . or empty

Expected Build Process

When Root Directory is set to repo root (.):

  1. ✅ Vercel clones the repo
  2. ✅ Runs npm install from root (installs all workspace deps)
  3. ✅ Runs npm run build --workspace=packages/website
  4. ✅ Builds static site in packages/website/out
  5. ✅ Deploys from that directory

If Deployment Fails

Check the build logs:

  1. Go to Deployments tab
  2. Click on the failed deployment
  3. Check the "Build Logs" section
  4. 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

CR8 Platform Documentation