Vercel

Inferred Example - Vercel is not explicitly referenced in the Shevky codebase. This guide is a generic pattern for static site deployment.

Configuration

Create vercel.json in your project root:

{
  "buildCommand": "npm run build",
  "outputDirectory": "dist"
}

Steps

  1. Push your project to a Git repository.
  2. Import the repository in Vercel.
  3. Vercel runs the build command and serves dist/.

Tips

  • Set identity.url to your Vercel URL or custom domain before building.

Related