Deploy to Vercel
SkillCloud & infraDeploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Deploy to Vercel skill
What this skill tells your AI
The instructions your AI receives, as published by ominou5/funnel-architect-plugin in skills/deploy-vercel/SKILL.md and read by ahel’s review.
Best for React/Next.js funnels and projects that benefit from edge functions.
Prerequisites
- Node.js installed
- Vercel account (free Hobby tier works for funnels)
Setup
# Install Vercel CLI
npm install -g vercel
# Login
vercel login
# Deploy (first time — will prompt for config)
vercel
# Deploy to production
vercel --prod
Configuration (vercel.json)
{
"headers": [
{
"source": "/(.*).html",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=300" }]
},
{
"source": "/(.*).css",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
},
{
"source": "/(.*).js",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
}
],
"redirects": [
{ "source": "/old-page", "destination": "/new-page", "permanent": true }
],
"cleanUrls": true,
"trailingSlash": false
}
Custom Domain
- Go to Project settings → Domains
- Add your domain
- Update DNS: add A record
76.76.21.21or CNAME tocname.vercel-dns.com - SSL is automatic
Environment Variables
# Add via CLI
vercel env add VARIABLE_NAME
# Or via Dashboard: Project settings → Environment Variables
Framework Support
Vercel auto-detects: Next.js, React (Vite/CRA), Astro, and static HTML. No additional configuration needed for supported frameworks.
Signals
- GitHub stars
- 81
- Forks
- 18
- Last commit
- Mar 2026
Advanced
- Catalog kind
- skill
- Gateway key
deploy-vercel- Source
- github.com/ominou5/funnel-architect-plugin