vercel-deployment

Installation
SKILL.md

Vercel Deployment

Overview

Vercel is a cloud platform for deploying frontend frameworks and serverless functions with automatic CI/CD, preview deployments, and edge infrastructure. Projects are configured via vercel.json (or programmatic vercel.ts), the Vercel dashboard, or the Vercel CLI.

When to use: Static sites, SSR frameworks (Next.js, SvelteKit, Nuxt), serverless API routes, edge functions, preview environments per pull request, monorepo deployments.

When NOT to use: Long-running backend processes (use containers), WebSocket servers (use dedicated infrastructure), heavy compute workloads (use cloud VMs), applications requiring persistent file system access.

Quick Reference

Pattern Tool / API Key Points
Project config vercel.json or vercel.ts Root of project, controls builds/routing/functions
Rewrites rewrites array Routes request to destination, URL unchanged
Redirects redirects array Changes URL, permanent: true for 301
Headers headers array Custom response headers per path pattern
Clean URLs cleanUrls: true Strips .html extensions
Related skills
Installs
31
GitHub Stars
11
First Seen
Feb 24, 2026