vercel-migration-deep-dive

Solid

Migrate to Vercel from other platforms or re-architecture existing Vercel deployments. Use when migrating from Netlify, AWS, or Cloudflare to Vercel, or when re-platforming an existing Vercel application. Trigger with phrases like "migrate to vercel", "vercel migration", "switch to vercel", "netlify to vercel", "aws to vercel", "vercel replatform".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Vercel Migration Deep Dive ## Overview Migrate applications to Vercel from Netlify, AWS (Lambda/CloudFront/S3), Cloudflare Workers, or traditional hosting. Covers configuration mapping, DNS cutover, feature parity validation, and incremental migration with the strangler fig pattern. ## Current State !`vercel --version 2>/dev/null || echo 'Vercel CLI not installed'` !`cat package.json 2>/dev/null | jq -r '.name // "no package.json"' 2>/dev/null || echo 'N/A'` ## Prerequisites - Access to current hosting platform - Git repository with application source - DNS management access for domain cutover - Vercel account (Pro recommended for production) ## Instructions ### Step 1: Configuration Mapping **From Netlify:** | Netlify | Vercel Equivalent | |---------|-------------------| | `netlify.toml` | `vercel.json` | | `_redirects` / `_headers` | `vercel.json` redirects/headers | | Netlify Functions (`netlify/functions/`) | API routes (`api/`) | | Netlify Edge Functions | Edge Middleware or Edge Functions | | `NETLIFY_ENV` | `VERCEL_ENV` | | Deploy previews | Preview deployments (automatic) | | Branch deploys | Branch preview URLs | ```json // Netlify _redirects → vercel.json // FROM: /old-page /new-page 301 // TO: { "redirects": [ { "source": "/old-page", "destination": "/new-page", "permanent": true } ] } // Netlify _headers → vercel.json // FROM: /* X-Frame-Options: DENY // TO: { "headers": [ { "source": "/(.*)", "headers": [ { "key": "X-F...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

vercel-deploy-integration

Deploy and manage Vercel production deployments with promotion, rollback, and multi-region strategies. Use when deploying to production, configuring deployment regions, or setting up blue-green deployment patterns on Vercel. Trigger with phrases like "deploy vercel", "vercel production deploy", "vercel promote", "vercel rollback", "vercel regions".

2,266 Updated today
jeremylongshore
AI & Automation Solid

vercel-upgrade-migration

Upgrade Vercel CLI, Node.js runtime, and Next.js framework versions with breaking change detection. Use when upgrading Vercel CLI versions, migrating Node.js runtimes, or updating Next.js between major versions on Vercel. Trigger with phrases like "upgrade vercel", "vercel migration", "vercel breaking changes", "update vercel CLI", "next.js upgrade on vercel".

2,266 Updated today
jeremylongshore
Web & Frontend Listed

vercel-deploy

Use when deploying Next.js applications to Vercel. Triggers for: vercel.json configuration, build optimization, environment variable setup, custom domain configuration, API proxy setup, or deployment troubleshooting. NOT for: backend-only deployments, non-Vercel hosting, or local development setup.

335 Updated today
aiskillstore
AI & Automation Featured

vercel-deployment

Expert knowledge for deploying to Vercel with Next.js

39,227 Updated today
sickn33
DevOps & Infrastructure Listed

vercel

Deploys applications to Vercel including serverless functions, edge functions, environment variables, and CI/CD. Use when deploying Next.js applications, frontend projects, or serverless APIs.

42 Updated 2 months ago
diegosouzapw